Skip to content
Snippets Groups Projects
Commit 24e81ce4 authored by Robin Appelman's avatar Robin Appelman
Browse files

fix some ldap errors

parent 4c0c5b64
Branches
No related tags found
No related merge requests found
......@@ -97,7 +97,7 @@ class OC_USER_LDAP extends OC_USER_BACKEND {
return $entries[0]["dn"];
}
public function checkPassword( $uid, $password ) {
if(!self::$configured){
if(!$this->configured){
return false;
}
$dn = $this->getDn( $uid );
......@@ -108,7 +108,7 @@ class OC_USER_LDAP extends OC_USER_BACKEND {
}
public function userExists( $uid ) {
if(!self::$configured){
if(!$this->configured){
return false;
}
$dn = $this->getDn($uid);
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment