Browse Source

Use limit and offset

remotes/origin/fix-10825
Lukas Reschke 11 years ago
parent
commit
202f1215aa
  1. 2
      settings/controller/userscontroller.php

2
settings/controller/userscontroller.php

@ -133,7 +133,7 @@ class UsersController extends Controller {
if($gid !== '') {
$batch = $this->getUsersForUID($this->groupManager->displayNamesInGroup($gid, $pattern, $limit, $offset));
} else {
$batch = $this->userManager->search('');
$batch = $this->userManager->search('', $limit, $offset);
}
foreach ($batch as $user) {

Loading…
Cancel
Save