Adjusted the check user function to lowercase the return.

Signed-off-by: Insanemal <insanemal@gmail.com>
remotes/origin/stable
Insanemal 15 years ago committed by Robin Appelman
parent 18d8dc4757
commit 8d092434ed
  1. 9
      apps/user_ldap/user_ldap.php

@ -115,7 +115,14 @@ class OC_USER_LDAP extends OC_User_Backend {
if (!@ldap_bind( $this->getDs(), $dn, $password ))
return false;
return $uid;
if($this->ldap_nocase) {
return strtolower($uid);
}
else {
return $uid;
}
}
public function userExists( $uid ) {

Loading…
Cancel
Save