Skip to content
Snippets Groups Projects
Commit d3fff02f authored by Dries Buytaert's avatar Dries Buytaert
Browse files

- Fixed typo in upgrade script

parent 9c9905d9
No related branches found
No related tags found
No related merge requests found
......@@ -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");
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment