]> git.mxchange.org Git - quix0rs-gnu-social.git/commitdiff
??? Not callable?
authorRoland Haeder <roland@mxchange.org>
Fri, 27 Mar 2015 22:41:39 +0000 (23:41 +0100)
committerRoland Haeder <roland@mxchange.org>
Fri, 27 Mar 2015 22:41:39 +0000 (23:41 +0100)
Signed-off-by: Roland Haeder <roland@mxchange.org>
classes/Notice_tag.php
lib/tagcloudsection.php

index 5567b06093aa4ab8372cff0a930ce235f7f572d0..eb36b8341092a5828691cc0345131d8cec74217b 100644 (file)
@@ -88,7 +88,7 @@ class Notice_tag extends Managed_DataObject
      *
      * @return $inScope Whether the current profile is allowed to see this tag
      */
-    public function isCurrentProfileInScope () {
+    function isCurrentProfileInScope () {
         // Check scope, default is allowed
         $inScope = TRUE;
 
index ccdf89f0b4c2f583a3a750d2126867b3c81cc406..ca72a27e521b38f161eedfffbca8759e23f34317 100644 (file)
@@ -51,7 +51,7 @@ class TagCloudSection extends Section
     {
         $tags = $this->getTags();
 
-        if (!$tags) {
+        if (!$tags instanceof Notice_tag) {
             // TRANS: Content displayed in a tag cloud section if there are no tags.
             $this->out->element('p', null, _m('NOTAGS','None'));
             return false;