From 6949cefa7f1649d2c466df2f3566c118be9d88cd Mon Sep 17 00:00:00 2001 From: Evan Prodromou Date: Fri, 23 Jan 2009 03:03:17 +0100 Subject: [PATCH] add groups-by-posts section --- actions/groups.php | 6 ++++++ 1 file changed, 6 insertions(+) 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(); + } }