summaryrefslogtreecommitdiff
path: root/modules/locale
diff options
context:
space:
mode:
authorGábor Hojtsy <gabor@hojtsy.hu>2007-05-25 15:47:57 +0000
committerGábor Hojtsy <gabor@hojtsy.hu>2007-05-25 15:47:57 +0000
commit1d7037a756f2029548be24f9a1e5df4ed3f817ec (patch)
treec25779acbd514f8beaa22fc3034303dc9da74338 /modules/locale
parent2ea8460ea9ad5f82127bd3605fcb4765bd2de56d (diff)
downloadbrdo-1d7037a756f2029548be24f9a1e5df4ed3f817ec.tar.gz
brdo-1d7037a756f2029548be24f9a1e5df4ed3f817ec.tar.bz2
#128866 by myself: bjaspan noted that the pgsql and mysql updates on locale_update_6002() are reversed, I noted that the variables table got the language column inadvertently
Diffstat (limited to 'modules/locale')
-rw-r--r--modules/locale/locale.install4
1 files changed, 2 insertions, 2 deletions
diff --git a/modules/locale/locale.install b/modules/locale/locale.install
index b2c4f85e1..1d87d6ccc 100644
--- a/modules/locale/locale.install
+++ b/modules/locale/locale.install
@@ -82,10 +82,10 @@ function locale_update_6002() {
switch ($GLOBALS['db_type']) {
case 'mysql':
case 'mysqli':
- db_add_column($ret, 'locales_source', 'textgroup', 'varchar(255)', array('default' => "''", 'not null' => TRUE));
+ $ret[] = update_sql("ALTER TABLE {locales_source} ADD textgroup varchar(255) NOT NULL default ''");
break;
case 'pgsql':
- $ret[] = update_sql("ALTER TABLE {locales_source} ADD textgroup varchar(255) NOT NULL default ''");
+ db_add_column($ret, 'locales_source', 'textgroup', 'varchar(255)', array('default' => "''", 'not null' => TRUE));
break;
}
return $ret;