No, I meant that the uninstall routine works find, except it will not remove the entries added to the settinggroup and setting tables.
code inserting ...
PHP Code:
$DB_site->query("INSERT INTO settinggroup VALUES (40, ...
PHP Code:
$DB_site->query("INSERT INTO setting VALUES (NULL,40, ...
code deleting
PHP Code:
$DB_site->query("DELETE FROM settinggroup WHERE displayorder=44 ...
PHP Code:
$DB_site->query("DELETE FROM setting WHERE settinggroupid=44 ...
So, the code removing the entries from the database won't work, because the typo in the setting order, and settinggroupid are set to 44, not 40.
So, if you reinstall it, there are duplicate entries in these tables.
Like I said, I'm not a MySQL guru, but I think I'm correct. Just thought you'd like to know.