diff options
-rw-r--r-- | database/updates.inc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/database/updates.inc b/database/updates.inc index f0249be0f..a9f153b30 100644 --- a/database/updates.inc +++ b/database/updates.inc @@ -2064,7 +2064,7 @@ function system_update_185() { // Make the forum's vocabulary the highest in list, if present $ret = array(); - if ($vid = variable_get('forum_nav_vocabulary', 0) { + if ($vid = variable_get('forum_nav_vocabulary', 0)) { db_query('UPDATE {vocabulary} SET weight = %d WHERE vid = %d', -10, $vid); } |