When editing a node I'm getting a SQL warning that a table doesn't exist. Error is in the getting of the default terms.

Line 713

$default_value_query=db_query("SELECT * FROM {$table} WHERE nid=%d", $node->nid);

Changing it to

$default_value_query=db_query('SELECT * FROM {'. $table.'} WHERE nid=%d', $node->nid);

seems to fix the problem.

Cloudy

PS Thanks for the great module.

CommentFileSizeAuthor
tax_fields_form_alter.patch846 bytesCloudCuckoo

Comments

boneless’s picture

Assigned: Unassigned » boneless
Status: Needs review » Fixed

fixed in new release, thanks for reporting!
glad you like it ;)

boneless’s picture

Status: Fixed » Closed (fixed)