From 6e166b24181988ddbd0d0bb5185fdec749ed9383 Mon Sep 17 00:00:00 2001 From: Evan Prodromou Date: Tue, 20 Sep 2011 14:04:09 -0400 Subject: [PATCH] don't show group tagcloud in high-performance mode --- lib/groupaction.php | 8 ++++++-- 1 file changed, 6 insertions(+), 2 deletions(-) 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(); + } } /** -- 2.39.2