After switching from test to production server I spent 4 hours trying to work out why my filter blocks don't appear anymore - finally discovered that on line 470
$joins .= " INNER JOIN node n ON tn.nid = n.nid";
should be this:
$joins .= " INNER JOIN {node} n ON tn.nid = n.nid";
Thanks for a great module and sorry for not making a patch -its only one line after all :)
Comments
Comment #1
solotandem commentedGood catch.
Implemented in next dev release created after this comment.