Adjusted the check user function to lowercase the return.

Signed-off-by: Insanemal <insanemal@gmail.com>
This commit is contained in:
Insanemal 2011-11-21 20:20:26 +10:00 committed by Robin Appelman
parent 18d8dc4757
commit 8d092434ed
1 changed files with 8 additions and 1 deletions

View File

@ -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 ) {