From: Marcel Werk Date: Wed, 14 Oct 2015 11:09:55 +0000 (+0200) Subject: Fixed user search issue X-Git-Tag: 2.1.8~24 X-Git-Url: https://git.stricted.de/?a=commitdiff_plain;h=4e09aa1a055ea0a5b1cdaf04ed23898b5af245f0;p=GitHub%2FWoltLab%2FWCF.git Fixed user search issue --- diff --git a/wcfsetup/install/files/lib/form/UserSearchForm.class.php b/wcfsetup/install/files/lib/form/UserSearchForm.class.php index a9d79eeef0..432b75e25e 100644 --- a/wcfsetup/install/files/lib/form/UserSearchForm.class.php +++ b/wcfsetup/install/files/lib/form/UserSearchForm.class.php @@ -173,7 +173,7 @@ class UserSearchForm extends UserOptionListForm { $this->buildDynamicConditions(); // if no conditions exists, no need to send query - if (!count($this->conditions->getParameters())) { + if (!$this->conditions->__toString()) { return; }