From 32f7d3edc23835accf2c4a33e13e066f6f0c6938 Mon Sep 17 00:00:00 2001 From: Evan Prodromou Date: Mon, 19 Sep 2011 22:01:47 -0400 Subject: [PATCH] inverted switch for performance on public page --- actions/public.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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(); }