From 8112c04c3de2463cb8bfa0b36c469b11421bb1f5 Mon Sep 17 00:00:00 2001 From: Evan Prodromou Date: Thu, 22 Jan 2009 21:14:24 +0000 Subject: Show (None) on no tag cloud results --- lib/tagcloudsection.php | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/lib/tagcloudsection.php b/lib/tagcloudsection.php index 121dfc499..1a7f721b2 100644 --- a/lib/tagcloudsection.php +++ b/lib/tagcloudsection.php @@ -53,6 +53,7 @@ class TagCloudSection extends Section $tags = $this->getTags(); if (!$tags) { + $this->out->element('p', null, _('None')); return false; } @@ -66,6 +67,11 @@ class TagCloudSection extends Section $sum += $tags->weight; } + if ($cnt == 0) { + $this->out->element('p', null, _('(None)')); + return false; + } + ksort($tw); $this->out->elementStart('ul', 'tags xoxo tag-cloud'); -- cgit v1.2.3-54-g00ecf