Hello,
I am the maintainer of Taxonomy menu block, a module that does the same as this one but has a completely different approach.
I have noticed that when uninstalling Taxonomy menu, this code gets run in hook_uninstall:
// Delete variables
$query = db_select('variable', 'v')->fields('v')->execute();
$variables = $query->fetchAll();
foreach ($variables as $variable) {
if (strpos($variable->name, 'taxonomy_menu') !== FALSE) {
variable_del($variable->name);
}
}
This uninstalls all variables that are named taxonomy_menu%, meaning also the variables for my module. There should be done a more specific deletion of variables.
Fixed
1.0
Code
No activities found.