I'm not sure if you are aware, but there is a small bug in the latest versions' SQL patch.
Lines 268-276 read:
Code:
#
# Create table structure for table `admin_allowed_categories`
#
DROP TABLE IF EXISTS `admin_allowed_categories`;
CREATE TABLE `admin_allowed_pages` (
`categories_id` int(11) NOT NULL default '0',
`admin_id` int(11) NOT NULL default '0'
) TYPE=MyISAM;
Line 273 should read:
Code:
CREATE TABLE `admin_allowed_categories` (
I've just installed this, and will be giving it a spin shortly.
Bookmarks