after wrappen at the taxonomy.module
line:527 db_query('INSERT INTO {term_node} (nid, tid) VALUES (%d, %d)', $nid, $term)
and must be
line:527 db_query('INSERT INTO {term_node} (nid, tid) VALUES (%d, %d)', $nid, $term->tid)
after wrappen at the taxonomy.module
line:527 db_query('INSERT INTO {term_node} (nid, tid) VALUES (%d, %d)', $nid, $term)
and must be
line:527 db_query('INSERT INTO {term_node} (nid, tid) VALUES (%d, %d)', $nid, $term->tid)
Comments
Comment #1
inforeto commentedFor possible patches, see here: http://drupal.org/node/87669
There's many related issues. Marking as duplicate.