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

solotandem’s picture

Version: 6.x-1.0 » 7.x-1.x-dev
Assigned: Unassigned » solotandem
Status: Active » Fixed

Good catch.

Implemented in next dev release created after this comment.

Status: Fixed » Closed (fixed)

Automatically closed -- issue fixed for 2 weeks with no activity.