diff options
author | Evan Prodromou <evan@controlyourself.ca> | 2009-01-23 03:07:03 +0100 |
---|---|---|
committer | Evan Prodromou <evan@controlyourself.ca> | 2009-01-23 03:07:03 +0100 |
commit | ae0f2009d580200c6fa88890c79b003b802f810b (patch) | |
tree | be3371a14cb551ca25f24bfd75ed77db16a5e6c2 /actions/groups.php | |
parent | 6949cefa7f1649d2c466df2f3566c118be9d88cd (diff) |
Groups list by members
Diffstat (limited to 'actions/groups.php')
-rw-r--r-- | actions/groups.php | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/actions/groups.php b/actions/groups.php index 206065d26..6faa497fc 100644 --- a/actions/groups.php +++ b/actions/groups.php @@ -119,5 +119,7 @@ class GroupsAction extends Action { $gbp = new GroupsByPostsSection($this); $gbp->show(); + $gbm = new GroupsByMembersSection($this); + $gbm->show(); } } |