]> git.mxchange.org Git - quix0rs-gnu-social.git/commitdiff
Need to pass the password parameter to checkPassword
authorCraig Andrews <candrews@integralblue.com>
Mon, 22 Mar 2010 20:04:06 +0000 (16:04 -0400)
committerCraig Andrews <candrews@integralblue.com>
Mon, 22 Mar 2010 20:04:24 +0000 (16:04 -0400)
plugins/LdapAuthentication/LdapAuthenticationPlugin.php

index 6296bccfad634f99fec624fcf88a6f9ad3aacfa3..a55c45ff57ad5a0f3db81a11d06e792021d69683 100644 (file)
@@ -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)