From f38a8abd346569b06770a4881922cb9347c76228 Mon Sep 17 00:00:00 2001 From: Evan Prodromou Date: Sat, 23 Apr 2011 13:45:43 -0400 Subject: [PATCH] re-enable invite button and popular notice section on home stream --- actions/all.php | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/actions/all.php b/actions/all.php index 9350c9a849..f558c3925f 100644 --- a/actions/all.php +++ b/actions/all.php @@ -183,10 +183,10 @@ class AllAction extends ProfileAction function showSections() { - // $ibs = new InviteButtonSection($this); - // $ibs->show(); - // $pop = new PopularNoticeSection($this); - // $pop->show(); + $ibs = new InviteButtonSection($this); + $ibs->show(); + $pop = new PopularNoticeSection($this); + $pop->show(); // $pop = new InboxTagCloudSection($this, $this->user); // $pop->show(); }