2
Let me first say that I HAVEN'T ACTUALLY TRIED THIS.... so it could I'm mis-reading the code but:
It looks like ./block/block.php line 115
$criteria->add(new Criteria('l.tag_modid', $modid));
should be:
$criteria->add(new Criteria('o.tag_modid', $modid));
and in line 120:
if (!$tags = &$tagHandler->getByLimit(0, 0, $criteria, null, empty($options[1]))) {
should be:
if (!$tags = $tagHandler->getByLimit(0, 0, $criteria, null, empty($options[1]))) {
In theory that should help fix the issue in the block. Let us know if that works and if so then we can find the other place(s) in the code that may have similar issues.