From: Evan Prodromou Date: Tue, 20 Sep 2011 02:01:47 +0000 (-0400) Subject: inverted switch for performance on public page X-Git-Url: https://git.mxchange.org/?a=commitdiff_plain;h=32f7d3edc23835accf2c4a33e13e066f6f0c6938;p=quix0rs-gnu-social.git inverted switch for performance on public page --- diff --git a/actions/public.php b/actions/public.php index 4743ff24c3..75217cb229 100644 --- a/actions/public.php +++ b/actions/public.php @@ -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(); }