diff options
author | Andreas Gohr <andi@splitbrain.org> | 2013-06-07 13:23:40 +0200 |
---|---|---|
committer | Andreas Gohr <andi@splitbrain.org> | 2013-06-07 13:23:40 +0200 |
commit | e7fbe18945e8d94fd400fd66f36e67174951f290 (patch) | |
tree | d542b4a0780b535d27bb54a158bea21f45be3e37 /lib/plugins/authldap/conf/default.php | |
parent | 12d195ab7189878b41dc4d211befafc79ae402a6 (diff) | |
download | rpg-e7fbe18945e8d94fd400fd66f36e67174951f290.tar.gz rpg-e7fbe18945e8d94fd400fd66f36e67174951f290.tar.bz2 |
fix ldap deref option FS2798
Do not pass timelimit and deref settings to ldap_search. These values
should be set globally via ldap_set_option() instead (as we do for
deref).
Diffstat (limited to 'lib/plugins/authldap/conf/default.php')
-rw-r--r-- | lib/plugins/authldap/conf/default.php | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/lib/plugins/authldap/conf/default.php b/lib/plugins/authldap/conf/default.php index d530d59c9..2c295eeeb 100644 --- a/lib/plugins/authldap/conf/default.php +++ b/lib/plugins/authldap/conf/default.php @@ -9,6 +9,7 @@ $conf['groupfilter'] = ''; $conf['version'] = 2; $conf['starttls'] = 0; $conf['referrals'] = 0; +$conf['deref'] = 0; $conf['binddn'] = ''; $conf['bindpw'] = ''; //$conf['mapping']['name'] unsupported in config manager |