]> git.mxchange.org Git - quix0rs-gnu-social.git/blobdiff - lib/tagcloudsection.php
Suppress errors when checking for the existence of files that might be restricted...
[quix0rs-gnu-social.git] / lib / tagcloudsection.php
index 121dfc49905296d26ac44549ef95abc8480c2bb7..ff2aca6d6ec06eae34895ac3691fdb240aebcd80 100644 (file)
@@ -53,6 +53,7 @@ class TagCloudSection extends Section
         $tags = $this->getTags();
 
         if (!$tags) {
+            $this->out->element('p', null, _('None'));
             return false;
         }
 
@@ -66,11 +67,16 @@ 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');
         foreach ($tw as $tag => $weight) {
-            $this->showTag($tag, $weight, $weight/$sum);
+            $this->showTag($tag, $weight, ($sum == 0) ? 0 : $weight/$sum);
         }
         $this->out->elementEnd('ul');
 
@@ -110,4 +116,9 @@ class TagCloudSection extends Section
     {
         return common_local_url('tag', array('tag' => $tag));
     }
+
+    function divId()
+    {
+        return 'tagcloud';
+    }
 }