diff options
author | Morris Jobke <hey@morrisjobke.de> | 2018-04-05 08:13:26 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2018-04-05 08:13:26 +0200 |
commit | 4732a34b047a85c1a4b9a0ffad9b9d3938551682 (patch) | |
tree | 14b4fc6a5875cb21eee18f760258c785a3a7a7da /lib | |
parent | 2c6a534d5d3b76506811064e360dc311fd929abe (diff) | |
parent | bd0672530b40a39ca6bd86c032130927290e1c5d (diff) | |
download | nextcloud-server-4732a34b047a85c1a4b9a0ffad9b9d3938551682.tar.gz nextcloud-server-4732a34b047a85c1a4b9a0ffad9b9d3938551682.zip |
Merge pull request #9077 from nextcloud/fix-callForSeenUsers-stable13
[stable13] Move on with the next user if we found the user on one user back-end
Diffstat (limited to 'lib')
-rw-r--r-- | lib/private/User/Manager.php | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/lib/private/User/Manager.php b/lib/private/User/Manager.php index 5f2a010561c..abc7a45e6bc 100644 --- a/lib/private/User/Manager.php +++ b/lib/private/User/Manager.php @@ -478,6 +478,7 @@ class Manager extends PublicEmitter implements IUserManager { if ($return === false) { return; } + break; } } } @@ -488,7 +489,7 @@ class Manager extends PublicEmitter implements IUserManager { * Getting all userIds that have a listLogin value requires checking the * value in php because on oracle you cannot use a clob in a where clause, * preventing us from doing a not null or length(value) > 0 check. - * + * * @param int $limit * @param int $offset * @return string[] with user ids |