diff options
author | Angie Byron <webchick@24967.no-reply.drupal.org> | 2009-01-31 16:22:50 +0000 |
---|---|---|
committer | Angie Byron <webchick@24967.no-reply.drupal.org> | 2009-01-31 16:22:50 +0000 |
commit | 0c8af272e0b46ceb7657adaf96d975351cfebf8c (patch) | |
tree | 75cd8c06208adbcac5bc9f3da3231c337e512fbc | |
parent | b1d7222c6b003490dda7f45a92fe80737ba1c129 (diff) | |
download | brdo-0c8af272e0b46ceb7657adaf96d975351cfebf8c.tar.gz brdo-0c8af272e0b46ceb7657adaf96d975351cfebf8c.tar.bz2 |
#361135 by Dave Reid: Clean up taxonomy variables on uninstall.
-rw-r--r-- | modules/taxonomy/taxonomy.install | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/modules/taxonomy/taxonomy.install b/modules/taxonomy/taxonomy.install index 618f1c1bd..caa0e2c15 100644 --- a/modules/taxonomy/taxonomy.install +++ b/modules/taxonomy/taxonomy.install @@ -15,6 +15,10 @@ function taxonomy_install() { function taxonomy_uninstall() { // Remove tables. drupal_uninstall_schema('taxonomy'); + + // Remove variables. + variable_del('taxonomy_override_selector'); + variable_del('taxonomy_terms_per_page_admin'); } /** |