user warning: Table taxonomy_manager_merge doesn't exist query: SELECT * FROM taxonomy_manager_merge in /includes/database.mysqli.inc on line 154.
That's a short of the message that I was getting. So, I found this patch: http://drupal.org/node/297412, however it's for D6.
By modifying it I got rid of the warning.
What I did was I replaced these lines in the patch:
+ $obj->tid = $main_term;
+ drupal_write_record('term_node', $obj);
+ }
with
db_query("INSERT INTO {term_node} (tid, nid) VALUES (%d, %d)", $main_term, $obj->nid);
}
and applied the rest of the patch.
Some testing would be helpful.
Comments
Comment #1
mkrakowiak commentedI think this fixed the problem.
Comment #2
ivnish