diff options
author | Dries Buytaert <dries@buytaert.net> | 2006-06-06 20:23:03 +0000 |
---|---|---|
committer | Dries Buytaert <dries@buytaert.net> | 2006-06-06 20:23:03 +0000 |
commit | ff760f005d1943cec0630e7cae06ec2f0411cdfe (patch) | |
tree | 7a4aa1cd54412a2c2970e8ce921f4d631647d7f8 | |
parent | 226eed7047e51fe0c2fc68db89f6a1bfbe8353d4 (diff) | |
download | brdo-ff760f005d1943cec0630e7cae06ec2f0411cdfe.tar.gz brdo-ff760f005d1943cec0630e7cae06ec2f0411cdfe.tar.bz2 |
- Patch #67146 by webchick: fixed upgrade path.
-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); } |