Closed (fixed)
Project:
Taxonomy Fields
Version:
5.x-1.3-dev
Component:
Code
Priority:
Normal
Category:
Bug report
Assigned:
Reporter:
Created:
2 May 2007 at 16:03 UTC
Updated:
4 May 2007 at 11:36 UTC
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.
| Comment | File | Size | Author |
|---|---|---|---|
| tax_fields_form_alter.patch | 846 bytes | CloudCuckoo |
Comments
Comment #1
boneless commentedfixed in new release, thanks for reporting!
glad you like it ;)
Comment #2
boneless commented