]> git.mxchange.org Git - quix0rs-gnu-social.git/blobdiff - actions/showstream.php
fix getOtherTags() to not use joinAdd()
[quix0rs-gnu-social.git] / actions / showstream.php
index ccd976a0e30fe30a2151335451b554b60241c117..6e5ba84511ff8c3161b25ee46fad3a39c2d7d4f6 100644 (file)
@@ -285,8 +285,10 @@ class ShowstreamAction extends ProfileAction
     function showSections()
     {
         parent::showSections();
-        $cloud = new PersonalTagCloudSection($this, $this->user);
-        $cloud->show();
+        if (!common_config('performance', 'high')) {
+            $cloud = new PersonalTagCloudSection($this, $this->user);
+            $cloud->show();
+        }
     }
 
     function noticeFormOptions()