From: Marcel Werk Date: Sun, 25 Dec 2016 18:49:16 +0000 (+0100) Subject: Fixed missing limit in user search X-Git-Tag: 3.0.0_RC_3~43 X-Git-Url: https://git.stricted.de/?a=commitdiff_plain;h=68c19f75db30e6f0ebd130e1cd82766be5f9c01a;p=GitHub%2FWoltLab%2FWCF.git Fixed missing limit in user search --- diff --git a/wcfsetup/install/files/lib/acp/form/UserSearchForm.class.php b/wcfsetup/install/files/lib/acp/form/UserSearchForm.class.php index 995cee6aa8..e87e9d53f1 100755 --- a/wcfsetup/install/files/lib/acp/form/UserSearchForm.class.php +++ b/wcfsetup/install/files/lib/acp/form/UserSearchForm.class.php @@ -251,6 +251,7 @@ class UserSearchForm extends UserOptionListForm { */ protected function search() { $this->userList = new UserList(); + $this->userList->sqlLimit = $this->maxResults; EventHandler::getInstance()->fireAction($this, 'search');