diff options
author | Dries Buytaert <dries@buytaert.net> | 2004-09-14 20:15:03 +0000 |
---|---|---|
committer | Dries Buytaert <dries@buytaert.net> | 2004-09-14 20:15:03 +0000 |
commit | d3fff02f0606c300a0d18cc67a765e74eee1f622 (patch) | |
tree | e1e150fce1a3be5f671c6251879dda92b48957da | |
parent | 9c9905d9a077830e371d91b57527984c3cee96e3 (diff) | |
download | brdo-d3fff02f0606c300a0d18cc67a765e74eee1f622.tar.gz brdo-d3fff02f0606c300a0d18cc67a765e74eee1f622.tar.bz2 |
- Fixed typo in upgrade script
-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"); |