]> git.mxchange.org Git - quix0rs-gnu-social.git/blobdiff - actions/all.php
setting to turn off expensive queries
[quix0rs-gnu-social.git] / actions / all.php
index cbd2805ca3170b94be1c2db6859318461577e7e0..2b83127f72ad5025506b399e4dec4779de084b50 100644 (file)
@@ -211,12 +211,13 @@ class AllAction extends ProfileAction
             $ibs->show();
         }
         // XXX: make this a little more convenient
-        if (common_config('site', 'private')) {
+
+        if (!common_config('performance', 'high')) {
             $pop = new PopularNoticeSection($this);
             $pop->show();
+            $pop = new InboxTagCloudSection($this, $this->user);
+            $pop->show();
         }
-        //        $pop = new InboxTagCloudSection($this, $this->user);
-        //        $pop->show();
     }
 }