diff options
author | Bharat Mediratta <bharat@menalto.com> | 2010-01-29 14:06:36 -0800 |
---|---|---|
committer | Bharat Mediratta <bharat@menalto.com> | 2010-01-29 14:06:36 -0800 |
commit | 45cdac973d35de083875ed966ac687b805d60e7f (patch) | |
tree | a31e7f30339d1a900eeab2f0dc7bc6b212044556 | |
parent | e4d9ea3394ee2db82d9dee6c6ed78543fd0f78fb (diff) |
Oops, somebody (me?) forgot to update the gallery module version
number in gallery_installer::install() so the install.sql was out of
sync.
-rw-r--r-- | installer/install.sql | 2 | ||||
-rw-r--r-- | modules/gallery/helpers/gallery_installer.php | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/installer/install.sql b/installer/install.sql index 39637fb3..a5eec229 100644 --- a/installer/install.sql +++ b/installer/install.sql @@ -228,7 +228,7 @@ CREATE TABLE {modules} ( UNIQUE KEY `name` (`name`) ) AUTO_INCREMENT=10 DEFAULT CHARSET=utf8; SET character_set_client = @saved_cs_client; -INSERT INTO {modules} VALUES (1,1,'gallery',21); +INSERT INTO {modules} VALUES (1,1,'gallery',22); INSERT INTO {modules} VALUES (2,1,'user',2); INSERT INTO {modules} VALUES (3,1,'comment',2); INSERT INTO {modules} VALUES (4,1,'organize',1); diff --git a/modules/gallery/helpers/gallery_installer.php b/modules/gallery/helpers/gallery_installer.php index bfab4645..93948045 100644 --- a/modules/gallery/helpers/gallery_installer.php +++ b/modules/gallery/helpers/gallery_installer.php @@ -276,7 +276,7 @@ class gallery_installer { // @todo this string needs to be picked up by l10n_scanner module::set_var("gallery", "credits", "Powered by <a href=\"%url\">Gallery %version</a>"); module::set_var("gallery", "simultaneous_upload_limit", 5); - module::set_version("gallery", 21); + module::set_version("gallery", 22); } static function upgrade($version) { |