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"),