diff options
author | Joe7 <jozsef.rnagy@site.hu> | 2011-01-03 20:07:12 +0100 |
---|---|---|
committer | Bharat Mediratta <bharat@menalto.com> | 2011-01-03 11:10:31 -0800 |
commit | e6a5f39b9113fa9cfc526b873947e365793d4e3e (patch) | |
tree | 73d2adebbcdf8e8335f254ad8ff485be80a88f1f | |
parent | 70ac063c5590572d1a074632e9e06558951eaf52 (diff) |
case fix
-rw-r--r-- | modules/gallery/helpers/gallery_installer.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/modules/gallery/helpers/gallery_installer.php b/modules/gallery/helpers/gallery_installer.php index 90d6d4b7..834a27fa 100644 --- a/modules/gallery/helpers/gallery_installer.php +++ b/modules/gallery/helpers/gallery_installer.php @@ -650,7 +650,7 @@ class gallery_installer { } if ($version == 42) { - $db->query("ALTER TABLE {items} CHANGE `description` `description` TEXT DEFAULT NULL"); + $db->query("ALTER TABLE {items} CHANGE `description` `description` text DEFAULT NULL"); module::set_version("gallery", $version = 43); } } |