diff options
author | Côme Chilliet <come.chilliet@nextcloud.com> | 2023-10-19 10:35:49 +0200 |
---|---|---|
committer | Andy Scherzinger <info@andy-scherzinger.de> | 2023-12-06 00:08:29 +0100 |
commit | a9d86c1f95a013d37be90a1974545b377de0c7e7 (patch) | |
tree | 788eb06541c804c720655670f0af085d5883bca2 /apps/user_ldap/lib | |
parent | e32d38375a578e063b80f43c81afe5aa27dfcb1c (diff) | |
download | nextcloud-server-a9d86c1f95a013d37be90a1974545b377de0c7e7.tar.gz nextcloud-server-a9d86c1f95a013d37be90a1974545b377de0c7e7.zip |
Invert parameter order in getDisabledUserList to be consistent
This matches what was done in the calls and so fixes getting disabled
user list when there are several backends returning disabled users.
Signed-off-by: Côme Chilliet <come.chilliet@nextcloud.com>
(cherry picked from commit 85e7887e0764a9347bbbb10812459d95ccdfa6d4)
Diffstat (limited to 'apps/user_ldap/lib')
-rw-r--r-- | apps/user_ldap/lib/User_LDAP.php | 2 | ||||
-rw-r--r-- | apps/user_ldap/lib/User_Proxy.php | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/apps/user_ldap/lib/User_LDAP.php b/apps/user_ldap/lib/User_LDAP.php index f9ae6bbee66..d787bfea4d4 100644 --- a/apps/user_ldap/lib/User_LDAP.php +++ b/apps/user_ldap/lib/User_LDAP.php @@ -682,7 +682,7 @@ class User_LDAP extends BackendUtility implements IUserBackend, UserInterface, I return $enabled; } - public function getDisabledUserList(int $offset = 0, ?int $limit = null): array { + public function getDisabledUserList(?int $limit = null, int $offset = 0): array { throw new \Exception('This is implemented directly in User_Proxy'); } } diff --git a/apps/user_ldap/lib/User_Proxy.php b/apps/user_ldap/lib/User_Proxy.php index 919cddd99be..934bed7d450 100644 --- a/apps/user_ldap/lib/User_Proxy.php +++ b/apps/user_ldap/lib/User_Proxy.php @@ -463,7 +463,7 @@ class User_Proxy extends Proxy implements IUserBackend, UserInterface, IUserLDAP return $this->handleRequest($uid, 'setUserEnabled', [$uid, $enabled, $queryDatabaseValue, $setDatabaseValue]); } - public function getDisabledUserList(int $offset = 0, ?int $limit = null): array { + public function getDisabledUserList(?int $limit = null, int $offset = 0): array { return array_map( fn (OfflineUser $user) => $user->getOCName(), array_slice( |