diff options
author | Bharat Mediratta <bharat@menalto.com> | 2008-11-26 09:38:39 +0000 |
---|---|---|
committer | Bharat Mediratta <bharat@menalto.com> | 2008-11-26 09:38:39 +0000 |
commit | e1f39ac13f587c6c6fbf5c5ab522b8422f992366 (patch) | |
tree | a74b4d4dd4d8b03e7a054eac4316d38f0b313a5e /modules | |
parent | 427dc7a0d1297a8cab1d6913fa841f481929d9c4 (diff) |
Re-enable code to drop view columns from the items table when deleting groups.
Diffstat (limited to 'modules')
-rw-r--r-- | modules/user/helpers/group.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/modules/user/helpers/group.php b/modules/user/helpers/group.php index 6073085d..2e6a3962 100644 --- a/modules/user/helpers/group.php +++ b/modules/user/helpers/group.php @@ -57,7 +57,7 @@ class group_Core { if ($group->loaded) { // Drop the view column for this group in the items table. -// Database::instance()->query("ALTER TABLE `items` DROP `view_{$group->id}`"); + Database::instance()->query("ALTER TABLE `items` DROP `view_{$group->id}`"); $group->delete(); } } |