We had an issue with the Tag Cloud (file /inc/Tags.php) where the tag cloud array was being indexed from 0, resulting in the incorrect tag being displayed when you clicked on one. The problem line was line #117, ours looked like this:
Code: Select all
$tags = array_slice($tags, 0, $numberOfItems);
Code: Select all
$tags = array_slice($tags, 0, $numberOfItems, true);