What's the deal with KatID 26? I'm sure it has something to do with permalinks, but I keep getting burned with not completely uninstalling a module I'm writing. I'm modeling it after other modules, which have lines like
INSERT INTO `sys_options` (`Name`, `VALUE`, `kateg`, `desc`, `Type`, `check`, `err_text`, `order_in_kateg`, `AvailableValues`) VALUES
('modzzz_schools_permalinks', 'on', 26, 'Enable friendly permalinks in schools', 'checkbox', '', '', '0', ''),
And a corresponding uninstall like like
DELETE FROM `sys_options` WHERE `Name` = 'modzzz_schools_permalinks';
