Files: 'groups/generate-utids.php' and 'groups/generate-ntids.php'.

The db queries in those files need to have the column names enclosed in {}.

e.g.:

  db_query("INSERT INTO term_node (nid,tid) VALUES (%d, %d)", $nid, $term);

Needs to be:

  db_query("INSERT INTO {term_node} (nid,tid) VALUES (%d, %d)", $nid, $term);

Comments

killes@www.drop.org’s picture

Assigned: Unassigned » killes@www.drop.org

Fixed this. Unfortunately the scripts need some more work to be really usefull.

Anonymous’s picture