Fix pagination in group members listing

This commit is contained in:
Frederic Guillot 2015-12-14 21:47:38 -05:00
parent b377adc312
commit 4e154b106c
2 changed files with 2 additions and 1 deletions

View File

@ -4,6 +4,7 @@ Version 1.0.23 (unreleased)
Bug fixes:
- Fix wrong constant name that cause a PHP error in project management section
- Fix pagination in group members listing
Version 1.0.22
--------------

View File

@ -42,7 +42,7 @@ class Group extends Base
$group = $this->group->getById($group_id);
$paginator = $this->paginator
->setUrl('group', 'users')
->setUrl('group', 'users', array('group_id' => $group_id))
->setMax(30)
->setOrder('username')
->setQuery($this->groupMember->getQuery($group_id))