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

Commit

Permalink
Fixed items per page issue.
Browse files Browse the repository at this point in the history
  • Loading branch information
stijnhau committed Apr 27, 2014
1 parent 5f7795c commit 1df13b0
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/ZfcUserList/Controller/UserListController.php
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ public function listAction()
$paginator = $users;
}

$paginator->setItemCountPerPage(100);
$paginator->setItemCountPerPage(10);
$paginator->setCurrentPageNumber($this->getEvent()->getRouteMatch()->getParam('p'));
return array(
'users' => $paginator,
Expand Down

0 comments on commit 1df13b0

Please sign in to comment.