summaryrefslogtreecommitdiff
path: root/plugins/LdapAuthentication
diff options
context:
space:
mode:
authorCraig Andrews <candrews@integralblue.com>2010-03-22 16:04:06 -0400
committerCraig Andrews <candrews@integralblue.com>2010-03-22 16:04:24 -0400
commiteb563937df921e5fc67ca0c87e229feb2907fd19 (patch)
tree2ef766fa4556706001a30da8676d7e4653f41da6 /plugins/LdapAuthentication
parent26f49de0dd5673584e734152d2d3329b90eb6978 (diff)
Need to pass the password parameter to checkPassword
Diffstat (limited to 'plugins/LdapAuthentication')
-rw-r--r--plugins/LdapAuthentication/LdapAuthenticationPlugin.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/plugins/LdapAuthentication/LdapAuthenticationPlugin.php b/plugins/LdapAuthentication/LdapAuthenticationPlugin.php
index 6296bccfa..a55c45ff5 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)