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
1 changed files with 6 additions and 2 deletions

View File

@ -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();
}
}
/**