disable public tag cloud on public sites

This commit is contained in:
Evan Prodromou 2011-09-19 19:37:58 -04:00
parent a5518ce35e
commit b44bb472eb
1 changed files with 4 additions and 2 deletions

View File

@ -245,8 +245,10 @@ class PublicAction extends Action
$pop = new PopularNoticeSection($this); $pop = new PopularNoticeSection($this);
$pop->show(); $pop->show();
$cloud = new PublicTagCloudSection($this); if (common_config('site', 'private')) {
$cloud->show(); $cloud = new PublicTagCloudSection($this);
$cloud->show();
}
$feat = new FeaturedUsersSection($this); $feat = new FeaturedUsersSection($this);
$feat->show(); $feat->show();
} }