diff options
author | Craig Andrews <candrews@integralblue.com> | 2009-11-18 15:40:27 -0500 |
---|---|---|
committer | Craig Andrews <candrews@integralblue.com> | 2009-11-18 15:40:27 -0500 |
commit | 297f320e6f30aa973b275efc4aed59bf8c45fc0a (patch) | |
tree | 845505f60bcf771acb4f5ba3d5ef56a7e0c1f104 /plugins/LdapAuthentication | |
parent | 9ed70a5b111c57923eff46da84c8f6e3167eb01e (diff) |
attributes['username'] is required
Diffstat (limited to 'plugins/LdapAuthentication')
-rw-r--r-- | plugins/LdapAuthentication/LdapAuthenticationPlugin.php | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/plugins/LdapAuthentication/LdapAuthenticationPlugin.php b/plugins/LdapAuthentication/LdapAuthenticationPlugin.php index 555dabf78..25531a811 100644 --- a/plugins/LdapAuthentication/LdapAuthenticationPlugin.php +++ b/plugins/LdapAuthentication/LdapAuthenticationPlugin.php @@ -189,7 +189,6 @@ class LdapAuthenticationPlugin extends AuthenticationPlugin } $filter = Net_LDAP2_Filter::create($this->attributes['username'], 'equals', $username); $options = array( - 'scope' => 'sub', 'attributes' => $attributes ); $search = $ldap->search(null,$filter,$options); |