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:
Deon George 2025-06-26 22:04:37 +10:00
parent 6f20d426ad
commit 6d2c9d1354

View File

@ -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,
/*
|--------------------------------------------------------------------------