mirror of
https://github.com/silverstripe/silverstripe-blog
synced 2024-10-22 11:05:58 +02:00
FIX: Ensure tag cloud widget does not break when there are zero tags
This commit is contained in:
parent
96d8adebab
commit
515928b8e2
@ -90,12 +90,15 @@ class BlogTagsCloudWidget extends Widget
|
||||
}
|
||||
|
||||
// normalize the tag counts from 1 to 10
|
||||
$tagfactor = 10 / $maxTagCount;
|
||||
foreach ($tags->getIterator() as $tag) {
|
||||
$normalized = round($tagfactor * ($tag->TagCount));
|
||||
$tag->NormalizedTag = $normalized;
|
||||
if ($maxTagCount) {
|
||||
$tagfactor = 10 / $maxTagCount;
|
||||
foreach ($tags->getIterator() as $tag) {
|
||||
$normalized = round($tagfactor * ($tag->TagCount));
|
||||
$tag->NormalizedTag = $normalized;
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
return $tags;
|
||||
}
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user