summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorGábor Hojtsy <gabor@hojtsy.hu>2007-11-07 09:48:06 +0000
committerGábor Hojtsy <gabor@hojtsy.hu>2007-11-07 09:48:06 +0000
commit6c507c4a687eb78c3f6589b026dcb7e3ad639eb2 (patch)
tree7b980939477d9cb613964cfe1b004e296b96814e
parent69da830ceda0f4e8bf692fbc744d1e2b86947da2 (diff)
downloadbrdo-6c507c4a687eb78c3f6589b026dcb7e3ad639eb2.tar.gz
brdo-6c507c4a687eb78c3f6589b026dcb7e3ad639eb2.tar.bz2
#184668 by hazexp: remove extra ; from old SQL update
-rw-r--r--modules/system/system.install2
1 files changed, 1 insertions, 1 deletions
diff --git a/modules/system/system.install b/modules/system/system.install
index 1d7e58e62..1714424f4 100644
--- a/modules/system/system.install
+++ b/modules/system/system.install
@@ -2937,7 +2937,7 @@ function system_update_181() {
switch ($GLOBALS['db_type']) {
case 'mysql':
case 'mysqli':
- $ret[] = update_sql("ALTER TABLE {profile_fields} ADD autocomplete TINYint NOT NULL AFTER visibility ;");
+ $ret[] = update_sql("ALTER TABLE {profile_fields} ADD autocomplete TINYint NOT NULL AFTER visibility");
break;
case 'pgsql':
db_add_column($ret, 'profile_fields', 'autocomplete', 'smallint', array('not null' => TRUE, 'default' => 0));