From: Miles B. <mil...@gm...> - 2006-07-22 21:26:15
|
On 7/20/06, Kevin <ke...@dr...> wrote: > By any chance do you have *NO* categories in the database? ADODB Lite > has a quirk where it will return false when a query has no results. > This causes weird errors after you wrap that in a few layers of > abstraction. I now remember running into this problem with feed and > items. I've fixed this for categories, users, and tags. That should > cover everything. > > I also added a change where it's impossible to delete the None category. > > -Kevin In my working copy of FoFRedux I do not have any categories other than the default, which is None. Below is the sql command you asked me to run before. SELECT id, title, description FROM fr_categories ORDER BY title; +----+-------+-------------+ | id | title | description | +----+-------+-------------+ | 1 | None | No category | +----+-------+-------------+ 1 row in set (0.00 sec) |