function taxonomy_manager_update_7001 in Taxonomy Manager 7
Implements hook_update_N(). Resets 'taxonomy_override_selector' variable.
File
- ./
taxonomy_manager.install, line 19 - Install, update and uninstall functions for the Taxonomy Manager
Code
function taxonomy_manager_update_7001() {
// remove parent selector in core taxonomy term edit pages
variable_set('taxonomy_override_selector', FALSE);
return t('Successfully updated Taxonomy Manager settings.');
}