Fix group list pagination

This commit is contained in:
DariusIII
2018-04-19 22:52:28 +02:00
parent 31a8283f9e
commit 7bbaa630a8
3 changed files with 7 additions and 11 deletions
@@ -22,7 +22,7 @@ class GroupController extends BasePageController
$this->smarty->assign(
[
'groupname' => $groupName,
'grouplist' => Group::getGroupsRange(config('nntmux.items_per_page'), $groupName),
'grouplist' => Group::getGroupsRange($groupName),
]
);