I noticed that after a complete uninstallation some defined variables are left in the variables table. These are:
- 'nodewords_filter_modules_output'
- 'nodewords_filter_regexp'
- 'nodewords_use_alt_attribute_{content_type}'
I suggest to delete all configured variables upon uninstall. Maybe it's safe to use
DELETE FROM {variable} WHERE name LIKE 'nodewords_%';
Comments
Comment #1
Anonymous (not verified) commentedI am changing the status to remind me that I changed the code in the local development copy, and the code is not yet committed.
Comment #2
Anonymous (not verified) commentedThe code has been committed in CVS.
Deleting any Drupal variables with a name starting with nodewords_ is not a good idea, as it would remove variables used by modules not included in this project; the code must explicitly remove the variables, or use a more specific pattern matching.
As usual, before to update the installed modules, read first what reported in the project page.