Active
Project:
Better node_admin_content Form
Version:
6.x-1.x-dev
Component:
Code
Priority:
Minor
Category:
Bug report
Assigned:
Unassigned
Reporter:
Created:
25 Jul 2008 at 06:55 UTC
Updated:
25 Jul 2008 at 06:55 UTC
A reference to 'term_node' in taxonomy_node_filter() in taxonomy.inc isn't enclosed in curly braces:
So this line:
'JOIN' => array("INNER JOIN term_node tn$tn_count ON tn$tn_count.nid=n.nid AND tn$tn_count.tid=$tid"),
Should be:
'JOIN' => array("INNER JOIN {term_node} tn$tn_count ON tn$tn_count.nid=n.nid AND tn$tn_count.tid=$tid"),