From 6d2c9d1354d8d0aa594c65d8268d1f5c69f13a22 Mon Sep 17 00:00:00 2001 From: Deon George Date: Thu, 26 Jun 2025 22:04:37 +1000 Subject: [PATCH] Specifying a comma delimited list for LDAP_BASE_DN was never going to work. Use a colon instead. Fixes #351 --- config/pla.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/config/pla.php b/config/pla.php index 0c4f4df6..4cbe11b0 100644 --- a/config/pla.php +++ b/config/pla.php @@ -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, /* |--------------------------------------------------------------------------