From: Evan Prodromou Date: Thu, 22 Jan 2009 20:17:32 +0000 (+0000) Subject: Add groups by notice to public X-Git-Url: https://git.mxchange.org/?a=commitdiff_plain;h=248fd763bde70537e5e9a14db435c27a52849c9a;p=quix0rs-gnu-social.git Add groups by notice to public --- 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(); } }