From: Evan Prodromou Date: Tue, 20 Sep 2011 18:04:09 +0000 (-0400) Subject: don't show group tagcloud in high-performance mode X-Git-Url: https://git.mxchange.org/?a=commitdiff_plain;h=6e166b24181988ddbd0d0bb5185fdec749ed9383;p=quix0rs-gnu-social.git don't show group tagcloud in high-performance mode --- diff --git a/lib/groupaction.php b/lib/groupaction.php index 3a022a94cf..a5e62a2a5a 100644 --- a/lib/groupaction.php +++ b/lib/groupaction.php @@ -117,9 +117,13 @@ class GroupAction extends Action $this->showPending(); $this->showBlocked(); } + $this->showAdmins(); - $cloud = new GroupTagCloudSection($this, $this->group); - $cloud->show(); + + if (!common_config('performance', 'high')) { + $cloud = new GroupTagCloudSection($this, $this->group); + $cloud->show(); + } } /**