From 30293a21fef6ba617dfb07a91c17649f1bc4e13e Mon Sep 17 00:00:00 2001 From: Michael Joseph Date: Thu, 6 Feb 2003 10:22:00 +0000 Subject: [PATCH] corrected constructor name --- lib/authentication/LDAPAuthenticator.inc | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/lib/authentication/LDAPAuthenticator.inc b/lib/authentication/LDAPAuthenticator.inc index 36e69aa..43d8f18 100644 --- a/lib/authentication/LDAPAuthenticator.inc +++ b/lib/authentication/LDAPAuthenticator.inc @@ -35,7 +35,7 @@ class LDAPAuthenticator extends Authenticator { * @param string the LDAP server to connect to for validation (optional) * @param string the dn branch to perform the authentication against (optional) */ - function LDAPAuthentication($sLdapServer = "", $sLdapDN = "") { + function LDAPAuthenticator($sLdapServer = "", $sLdapDN = "") { global $default; $this->sLdapServer = strlen($sLdapServer) > 0 ? $sLdapServer : $default->system->get("ldapServer"); @@ -70,7 +70,6 @@ class LDAPAuthenticator extends Authenticator { */ function searchUsers($sUserNameSearch, $aAttributes) { global $default; - // connect and search if ( $this->oLdap->connect() ) { // search for the users -- libgit2 0.21.4