mirror of
https://github.com/nextcloud/server.git
synced 2026-05-28 04:32:30 -04:00
fix: Change the setting name
Signed-off-by: Marcel Klehr <mklehr@gmx.net>
This commit is contained in:
parent
63195fbf33
commit
580ba0c689
1 changed files with 2 additions and 2 deletions
|
|
@ -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 . '*';
|
||||
|
|
|
|||
Loading…
Reference in a new issue