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

Anonymous’s picture

Status: Active » Reviewed & tested by the community

I am changing the status to remind me that I changed the code in the local development copy, and the code is not yet committed.

Anonymous’s picture

Status: Reviewed & tested by the community » Fixed

The 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.

Status: Fixed » Closed (fixed)

Automatically closed -- issue fixed for 2 weeks with no activity.