Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/nextcloud/server.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRobin Appelman <icewind1991@gmail.com>2011-07-18 20:50:21 +0400
committerRobin Appelman <icewind1991@gmail.com>2011-07-18 20:50:21 +0400
commit24e81ce4d58f08e317846d10e1ca3aecb747775d (patch)
tree103f6a98d93485daef5c9ea6750dd49e5e911674 /apps/user_ldap
parent4c0c5b64c2915e765ed4b5009eef2c283fc54024 (diff)
fix some ldap errors
Diffstat (limited to 'apps/user_ldap')
-rw-r--r--apps/user_ldap/user_ldap.php4
1 files changed, 2 insertions, 2 deletions
diff --git a/apps/user_ldap/user_ldap.php b/apps/user_ldap/user_ldap.php
index b197aaa2502..a2fd48cdf06 100644
--- a/apps/user_ldap/user_ldap.php
+++ b/apps/user_ldap/user_ldap.php
@@ -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);