diff options
author | Evan Prodromou <evan@controlyourself.ca> | 2009-01-22 20:17:32 +0000 |
---|---|---|
committer | Evan Prodromou <evan@controlyourself.ca> | 2009-01-22 20:17:32 +0000 |
commit | 248fd763bde70537e5e9a14db435c27a52849c9a (patch) | |
tree | b35c797dd331c3fad81cf5766dc08f1d39b42f89 /actions/public.php | |
parent | 06cc977032f47ab6dcc44a4fd4c4d57e3f8497b3 (diff) |
Add groups by notice to public
Diffstat (limited to 'actions/public.php')
-rw-r--r-- | actions/public.php | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/actions/public.php b/actions/public.php index 8ce7fbee3..b51a95f24 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(); } } |