diff options
author | Craig Andrews <candrews@integralblue.com> | 2010-03-23 21:50:31 -0400 |
---|---|---|
committer | Craig Andrews <candrews@integralblue.com> | 2010-03-23 21:50:31 -0400 |
commit | 6b538cd9b31ffa25d2046e16d47a0cde26d0398f (patch) | |
tree | c0db119df3cfc599e86c5a51161d220cda0d6a7c /plugins/LdapAuthentication | |
parent | d9dcdf5b4966fc244fa9b6fa8415c2aeae6cbb47 (diff) |
Fix some regressions caused by refactor of LDAP plugin
Diffstat (limited to 'plugins/LdapAuthentication')
-rw-r--r-- | plugins/LdapAuthentication/LdapAuthenticationPlugin.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/plugins/LdapAuthentication/LdapAuthenticationPlugin.php b/plugins/LdapAuthentication/LdapAuthenticationPlugin.php index a55c45ff5..2e01738ec 100644 --- a/plugins/LdapAuthentication/LdapAuthenticationPlugin.php +++ b/plugins/LdapAuthentication/LdapAuthenticationPlugin.php @@ -118,7 +118,7 @@ class LdapAuthenticationPlugin extends AuthenticationPlugin function suggestNicknameForUsername($username) { - $entry = $this->ldap_get_user($username, $this->attributes); + $entry = $this->ldapCommon->get_user($username, $this->attributes); if(!$entry){ //this really shouldn't happen $nickname = $username; |