Specifying a comma delimited list for LDAP_BASE_DN was never going to work. Use a colon instead. Fixes #351
This commit is contained in:
parent
6f20d426ad
commit
6d2c9d1354
@ -52,7 +52,7 @@ return [
|
||||
| entry. Instead of using that, you can define your own base DNs to use.
|
||||
|
|
||||
*/
|
||||
'base_dns' => ($x=env('LDAP_BASE_DN', NULL)) ? explode(',',$x) : NULL,
|
||||
'base_dns' => ($x=env('LDAP_BASE_DN', NULL)) ? explode(':',$x) : NULL,
|
||||
|
||||
/*
|
||||
|--------------------------------------------------------------------------
|
||||
|
Loading…
x
Reference in New Issue
Block a user