From 3df69fe5ba4cabf4879629a6039a862a50e5ef7e Mon Sep 17 00:00:00 2001 From: Evan Prodromou Date: Thu, 14 Apr 2011 18:19:59 -0400 Subject: [PATCH] show invite button in public --- actions/public.php | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-) diff --git a/actions/public.php b/actions/public.php index 100f8d1194..d906d65501 100644 --- a/actions/public.php +++ b/actions/public.php @@ -222,14 +222,12 @@ class PublicAction extends Action function showSections() { - // $top = new TopPostersSection($this); - // $top->show(); $pop = new PopularNoticeSection($this); $pop->show(); + $ibs = new InviteButtonSection($this); + $ibs->show(); $gbp = new GroupsByMembersSection($this); $gbp->show(); - $ptp = new PeopletagsBySubsSection($this); - $ptp->show(); $feat = new FeaturedUsersSection($this); $feat->show(); }