]> 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 Häder <roland@mxchange.org>
Sun, 29 Mar 2020 22:21:03 +0000 (00:21 +0200)
Signed-off-by: Roland Haeder <roland@mxchange.org>
classes/Notice_tag.php
plugins/TagCloud/lib/tagcloudsection.php

index 62810eba987d24fdc0c260be4ad5adc5e85376e0..17882c60d832386fa6c6994a36ade8bdce8239aa 100644 (file)
@@ -89,7 +89,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 cec3619a8ebb3ca3a7edb00d805eb3d45176c083..d7b0929b7b9305c2ab5b8d010fd9927c370c062e 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;