From: Evan Prodromou Date: Mon, 19 Sep 2011 20:19:12 +0000 (-0400) Subject: hide popular notice section on non-private sites X-Git-Url: https://git.mxchange.org/?a=commitdiff_plain;h=319639a2327c11d1d5c8248db6881c07ee64ba97;p=quix0rs-gnu-social.git hide popular notice section on non-private sites --- diff --git a/actions/all.php b/actions/all.php index a7f325e014..cbd2805ca3 100644 --- a/actions/all.php +++ b/actions/all.php @@ -210,8 +210,11 @@ class AllAction extends ProfileAction } $ibs->show(); } - $pop = new PopularNoticeSection($this); - $pop->show(); + // XXX: make this a little more convenient + if (common_config('site', 'private')) { + $pop = new PopularNoticeSection($this); + $pop->show(); + } // $pop = new InboxTagCloudSection($this, $this->user); // $pop->show(); }