Skip to content
This repository was archived by the owner on Jul 20, 2021. It is now read-only.

Commit 1df13b0

Browse files
committed
Fixed items per page issue.
1 parent 5f7795c commit 1df13b0

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/ZfcUserList/Controller/UserListController.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ public function listAction()
2222
$paginator = $users;
2323
}
2424

25-
$paginator->setItemCountPerPage(100);
25+
$paginator->setItemCountPerPage(10);
2626
$paginator->setCurrentPageNumber($this->getEvent()->getRouteMatch()->getParam('p'));
2727
return array(
2828
'users' => $paginator,

0 commit comments

Comments
 (0)