1) Could the "escape" and "unescape" functions check for dates? Unless
I'm missing something, it makes querying against a datestamp impossible
("select * from XXX where modified < now()")
2) Could the "GetXXXlist()" function be named consistently? All the
other object methods are generic - Save(), Get(), etc.... - why not
just "List()"?
1) You're right. Will think about this one. As you probably know, there
s a workaround: you can do:
GetXXXList("modified", "<", "time()");
i.e pass the time on the php side, this'll make sure the data in
encoded properly in the query.
2) You're absolutely right. I've been working on the setup file
recently and it's been bugging me too. Will try to change that in the
next release.
Thanks for the suggestion.
Joel