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 48170254c..c11fa18fb 100644 --- a/database/updates.inc +++ b/database/updates.inc @@ -1756,7 +1756,7 @@ function update_105() { $shadowupdates = db_query("SELECT nid,tid FROM {forum} WHERE shadow=0"); while ($shadowrecord = db_fetch_object($shadowupdates)) { - db_query("DELETE FROM term_node WHERE nid = %d AND tid <> %d", $shadowrecord->nid, $shadowrecord-tid); + db_query("DELETE FROM term_node WHERE nid = %d AND tid <> %d", $shadowrecord->nid, $shadowrecord->tid); } $ret[] = update_sql("ALTER TABLE {forum} DROP shadow"); |