From 9e8bfddf290de2406ef089e6405b20deb19ba909 Mon Sep 17 00:00:00 2001 From: Angie Byron Date: Mon, 19 Jan 2009 01:53:26 +0000 Subject: [PATCH] #360104 by drewish: Allow taxomomy module to be uninstalled. --- modules/system/system.install | 2 +- modules/taxonomy/taxonomy.install | 16 ++++++++++++++++ 2 files changed, 17 insertions(+), 1 deletion(-) diff --git a/modules/system/system.install b/modules/system/system.install index db26426798b..bef8dcb83d6 100644 --- a/modules/system/system.install +++ b/modules/system/system.install @@ -330,7 +330,7 @@ function system_install() { } // Create tables. - $modules = array('system', 'filter', 'block', 'user', 'node', 'taxonomy'); + $modules = array('system', 'filter', 'block', 'user', 'node'); foreach ($modules as $module) { drupal_install_schema($module); } diff --git a/modules/taxonomy/taxonomy.install b/modules/taxonomy/taxonomy.install index 20c82c7ee16..9fc2ad23cc5 100644 --- a/modules/taxonomy/taxonomy.install +++ b/modules/taxonomy/taxonomy.install @@ -1,6 +1,22 @@