From: Evan Prodromou Date: Fri, 23 Jan 2009 02:03:17 +0000 (+0100) Subject: add groups-by-posts section X-Git-Url: https://git.mxchange.org/?a=commitdiff_plain;h=6949cefa7f1649d2c466df2f3566c118be9d88cd;p=quix0rs-gnu-social.git add groups-by-posts section --- diff --git a/actions/groups.php b/actions/groups.php index 154976f212..206065d263 100644 --- a/actions/groups.php +++ b/actions/groups.php @@ -114,4 +114,10 @@ class GroupsAction extends Action $this->pagination($this->page > 1, $cnt > GROUPS_PER_PAGE, $this->page, 'groups'); } + + function showSections() + { + $gbp = new GroupsByPostsSection($this); + $gbp->show(); + } }