add groups-by-posts section

This commit is contained in:
Evan Prodromou 2009-01-23 03:03:17 +01:00
parent 69183c445d
commit 6949cefa7f
1 changed files with 6 additions and 0 deletions

View File

@ -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();
}
}