Compare commits

...

1 Commits

Author SHA1 Message Date
Carl Schwan 7bb3f26f19 fix(ldap): Fix enumeration for search term
Make the glob not only work for completing the string but also any part
of the email.

Signed-off-by: Carl Schwan <carlschwan@kde.org>
2026-02-10 10:39:34 +01:00
+1 -1
View File
@@ -1572,7 +1572,7 @@ class Access extends LDAPUtility {
if ($term === '') {
$result = '*';
} elseif ($allowEnum) {
$result = $term . '*';
$result = '*' . $term . '*';
}
return $result;
}