From 24d04502c9571e553bdafd9c1c25366e5f68ef4d Mon Sep 17 00:00:00 2001 From: Neil Drumm <drumm@3064.no-reply.drupal.org> Date: Sun, 11 Jun 2006 23:10:13 +0000 Subject: [PATCH] #67146 by webchick, using update_sql() instead of db_query(). --- database/updates.inc | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/database/updates.inc b/database/updates.inc index a9f153b30617..b1110f2aecb2 100644 --- a/database/updates.inc +++ b/database/updates.inc @@ -2064,8 +2064,8 @@ 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)) { - db_query('UPDATE {vocabulary} SET weight = %d WHERE vid = %d', -10, $vid); + if ($vid = (int) variable_get('forum_nav_vocabulary', 0)) { + $ret[] = update_sql('UPDATE {vocabulary} SET weight = -10 WHERE vid = '. $vid); } return $ret; -- GitLab