Hi there
The statement in the _uninstall() "DELETE FROM variable WHERE name LIKE 'tableofcontents_%'" is missing the {} aroung "variable", otherwise it throws an error if the Drupal tables have a prefix. Correct statement:
DELETE FROM {variable} WHERE name LIKE 'tableofcontents_%'
Regards Jens
Comments
Comment #1
AlexisWilke commentedDone, thank you.