Taxonomy Filter breaks on multi-site installs
jonnyp - May 23, 2009 - 17:53
| Project: | Taxonomy Filter |
| Version: | 6.x-1.x-dev |
| Component: | Code |
| Category: | bug report |
| Priority: | normal |
| Assigned: | solotandem |
| Status: | closed |
Jump to:
Description
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
<?php
$joins .= " INNER JOIN node n ON tn.nid = n.nid";
?>should be this:
<?php
$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 :)

#1
Good catch.
Implemented in next dev release created after this comment.
#2
Automatically closed -- issue fixed for 2 weeks with no activity.