From 248fd763bde70537e5e9a14db435c27a52849c9a Mon Sep 17 00:00:00 2001 From: Evan Prodromou Date: Thu, 22 Jan 2009 20:17:32 +0000 Subject: [PATCH] Add groups by notice to public --- actions/public.php | 2 ++ 1 file changed, 2 insertions(+) diff --git a/actions/public.php b/actions/public.php index 8ce7fbee3e..b51a95f244 100644 --- a/actions/public.php +++ b/actions/public.php @@ -204,5 +204,7 @@ class PublicAction extends Action $top->show(); $pop = new PopularNoticeSection($this); $pop->show(); + $gbp = new GroupsByPostsSection($this); + $gbp->show(); } }