inverted switch for performance on public page

This commit is contained in:
Evan Prodromou 2011-09-19 22:01:47 -04:00
parent 2d30ed73f3
commit 32f7d3edc2
1 changed files with 1 additions and 1 deletions

View File

@ -245,7 +245,7 @@ class PublicAction extends Action
$pop = new PopularNoticeSection($this);
$pop->show();
if (common_config('performance', 'high')) {
if (!common_config('performance', 'high')) {
$cloud = new PublicTagCloudSection($this);
$cloud->show();
}