diff options
author | Gábor Hojtsy <gabor@hojtsy.hu> | 2007-11-07 09:48:06 +0000 |
---|---|---|
committer | Gábor Hojtsy <gabor@hojtsy.hu> | 2007-11-07 09:48:06 +0000 |
commit | 6c507c4a687eb78c3f6589b026dcb7e3ad639eb2 (patch) | |
tree | 7b980939477d9cb613964cfe1b004e296b96814e | |
parent | 69da830ceda0f4e8bf692fbc744d1e2b86947da2 (diff) | |
download | brdo-6c507c4a687eb78c3f6589b026dcb7e3ad639eb2.tar.gz brdo-6c507c4a687eb78c3f6589b026dcb7e3ad639eb2.tar.bz2 |
#184668 by hazexp: remove extra ; from old SQL update
-rw-r--r-- | modules/system/system.install | 2 |
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)); |