From: Craig Andrews Date: Mon, 22 Mar 2010 20:04:06 +0000 (-0400) Subject: Need to pass the password parameter to checkPassword X-Git-Url: https://git.mxchange.org/?a=commitdiff_plain;h=eb563937df921e5fc67ca0c87e229feb2907fd19;p=quix0rs-gnu-social.git Need to pass the password parameter to checkPassword --- diff --git a/plugins/LdapAuthentication/LdapAuthenticationPlugin.php b/plugins/LdapAuthentication/LdapAuthenticationPlugin.php index 6296bccfad..a55c45ff57 100644 --- a/plugins/LdapAuthentication/LdapAuthenticationPlugin.php +++ b/plugins/LdapAuthentication/LdapAuthenticationPlugin.php @@ -84,7 +84,7 @@ class LdapAuthenticationPlugin extends AuthenticationPlugin function checkPassword($username, $password) { - return $this->ldapCommon->checkPassword($username); + return $this->ldapCommon->checkPassword($username,$password); } function autoRegister($username, $nickname)