Loading lib/Service/UserService.php +1 −6 Original line number Diff line number Diff line Loading @@ -87,12 +87,7 @@ class UserService { foreach ($backends as $backend) { if ($backend->getBackendName() === 'LDAP') { $access = $backend->getLDAPAccess($uid); $requiredLDAPattributes = [ 'dn', strtolower($access->connection->ldapExpertUsernameAttr), strtolower($access->connection->ldapUserDisplayName) ]; $requiredLDAPattributes = $access->userManager->getAttributes(); $users = $access->fetchUsersByLoginName($uid, $requiredLDAPattributes); if (count($users) > 0) { $exists = true; Loading Loading
lib/Service/UserService.php +1 −6 Original line number Diff line number Diff line Loading @@ -87,12 +87,7 @@ class UserService { foreach ($backends as $backend) { if ($backend->getBackendName() === 'LDAP') { $access = $backend->getLDAPAccess($uid); $requiredLDAPattributes = [ 'dn', strtolower($access->connection->ldapExpertUsernameAttr), strtolower($access->connection->ldapUserDisplayName) ]; $requiredLDAPattributes = $access->userManager->getAttributes(); $users = $access->fetchUsersByLoginName($uid, $requiredLDAPattributes); if (count($users) > 0) { $exists = true; Loading