don't show group tagcloud in high-performance mode

This commit is contained in:
Evan Prodromou 2011-09-20 14:04:09 -04:00
parent 081d4edbf5
commit 6e166b2418

View File

@ -117,10 +117,14 @@ class GroupAction extends Action
$this->showPending(); $this->showPending();
$this->showBlocked(); $this->showBlocked();
} }
$this->showAdmins(); $this->showAdmins();
if (!common_config('performance', 'high')) {
$cloud = new GroupTagCloudSection($this, $this->group); $cloud = new GroupTagCloudSection($this, $this->group);
$cloud->show(); $cloud->show();
} }
}
/** /**
* Show mini-list of members * Show mini-list of members