diff options
author | Evan Prodromou <evan@controlyourself.ca> | 2009-01-23 06:10:25 +0100 |
---|---|---|
committer | Evan Prodromou <evan@controlyourself.ca> | 2009-01-23 06:10:25 +0100 |
commit | a130bb9d6da4b1b01a3ff9b0c674494dd465d512 (patch) | |
tree | 002e883bb5bc26ee7f0673897d20cc14f08b6229 | |
parent | 597245ffc3fc15876f005c98aa585288f4901635 (diff) |
A section
-rw-r--r-- | lib/tagcloudsection.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/tagcloudsection.php b/lib/tagcloudsection.php index 178dd88ca..a46c73846 100644 --- a/lib/tagcloudsection.php +++ b/lib/tagcloudsection.php @@ -76,7 +76,7 @@ class TagCloudSection extends Section $this->out->elementStart('ul', 'tags xoxo tag-cloud'); foreach ($tw as $tag => $weight) { - $this->showTag($tag, $weight, $weight/$sum); + $this->showTag($tag, $weight, ($sum == 0) ? $weight : $weight/$sum); } $this->out->elementEnd('ul'); |