FIX: Ensure tag cloud widget does not break when there are zero tags

This commit is contained in:
Gordon Anderson 2016-02-24 22:01:24 +07:00
parent 96d8adebab
commit 515928b8e2

View File

@ -90,12 +90,15 @@ class BlogTagsCloudWidget extends Widget
} }
// normalize the tag counts from 1 to 10 // normalize the tag counts from 1 to 10
$tagfactor = 10 / $maxTagCount; if ($maxTagCount) {
foreach ($tags->getIterator() as $tag) { $tagfactor = 10 / $maxTagCount;
$normalized = round($tagfactor * ($tag->TagCount)); foreach ($tags->getIterator() as $tag) {
$tag->NormalizedTag = $normalized; $normalized = round($tagfactor * ($tag->TagCount));
$tag->NormalizedTag = $normalized;
}
} }
return $tags; return $tags;
} }