diff options
author | Gábor Hojtsy <gabor@hojtsy.hu> | 2007-09-26 20:01:17 +0000 |
---|---|---|
committer | Gábor Hojtsy <gabor@hojtsy.hu> | 2007-09-26 20:01:17 +0000 |
commit | 5566f740acd58e14f2ad39cabfdf0cf2899ce59d (patch) | |
tree | b0f661ef73b5bc24f993004d13717be4217208b8 /modules | |
parent | be091880f44459e934b04525dfe312d573ac40a7 (diff) | |
download | brdo-5566f740acd58e14f2ad39cabfdf0cf2899ce59d.tar.gz brdo-5566f740acd58e14f2ad39cabfdf0cf2899ce59d.tar.bz2 |
#178890 by Freso: fix parse error introduced in #124979
Diffstat (limited to 'modules')
-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 d0f42be23..0a47882b2 100644 --- a/modules/system/system.install +++ b/modules/system/system.install @@ -3771,7 +3771,7 @@ function system_update_6032() { function system_update_6033() { $ret = array(); if (db_table_exists('node_comment_statistics')) { - db_change_field($ret, 'node_comment_statistics', 'nid', 'nid', array('type' => 'int', 'unsigned' => TRUE, 'not null' => TRUE, 'default' => 0) + db_change_field($ret, 'node_comment_statistics', 'nid', 'nid', array('type' => 'int', 'unsigned' => TRUE, 'not null' => TRUE, 'default' => 0)); } return $ret; } |