diff options
author | Marc Alexander <admin@m-a-styles.de> | 2019-11-01 12:40:52 +0100 |
---|---|---|
committer | Marc Alexander <admin@m-a-styles.de> | 2019-11-16 16:02:43 +0100 |
commit | c75502e09c9b997779a109b132298dd16b16e6d9 (patch) | |
tree | 8367bc52fbfa90bd6947df43053fecbf1b60aac5 /tests/auth/provider_ldap_test.php | |
parent | [ticket/12574] Don't add extension to php config & set default username (diff) | |
download | phpbb-c75502e09c9b997779a109b132298dd16b16e6d9.tar.gz phpbb-c75502e09c9b997779a109b132298dd16b16e6d9.tar.bz2 phpbb-c75502e09c9b997779a109b132298dd16b16e6d9.zip |
[ticket/12574] Use correct config entry for connecting to ldap
PHPBB3-12574
Diffstat (limited to 'tests/auth/provider_ldap_test.php')
-rw-r--r-- | tests/auth/provider_ldap_test.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/auth/provider_ldap_test.php b/tests/auth/provider_ldap_test.php index 211966875e..5482f964bf 100644 --- a/tests/auth/provider_ldap_test.php +++ b/tests/auth/provider_ldap_test.php @@ -31,7 +31,7 @@ class phpbb_auth_provider_ldap_test extends phpbb_database_test_case $config = new \phpbb\config\config([ 'ldap_server' => 'localhost', 'ldap_port' => 3389, - 'ldap_dn' => 'dc=example,dc=com', + 'ldap_base_dn' => 'dc=example,dc=com', 'ldap_uid' => 'uid', 'ldap_email' => 'mail', ]); |