From 580ba0c689f48a0712db96982d7838c6892b6f2d Mon Sep 17 00:00:00 2001 From: Marcel Klehr Date: Thu, 19 Mar 2026 16:17:31 +0100 Subject: [PATCH] fix: Change the setting name Signed-off-by: Marcel Klehr --- apps/user_ldap/lib/Access.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/apps/user_ldap/lib/Access.php b/apps/user_ldap/lib/Access.php index 8c9128f1c56..09fd099b750 100644 --- a/apps/user_ldap/lib/Access.php +++ b/apps/user_ldap/lib/Access.php @@ -1568,8 +1568,8 @@ class Access extends LDAPUtility { if ($term === '') { $result = '*'; } elseif ($allowEnum) { - $activeDirectoryCompat = $this->appConfig->getValueBool('user_ldap', 'partial_search_active_directory_compatibility', false); - if ($activeDirectoryCompat) { + $usePrefixWildcard = $this->appConfig->getValueBool('user_ldap', 'partial_search_with_prefix_wildcard', false); + if ($usePrefixWildcard) { $result = '*' . $term . '*'; } else { $result = $term . '*';