Skip to content
Snippets Groups Projects
Commit 4830ba80 authored by Frank Karlitschek's avatar Frank Karlitschek
Browse files

Merge pull request #2112 from owncloud/fix_1673

LDAP: escape some more chars for proper search filter, fixes #1673
parents f3b9c9eb 055fadd1
No related branches found
No related tags found
No related merge requests found
......@@ -144,6 +144,9 @@ abstract class Access {
'\;' => '\5c3B',
'\"' => '\5c22',
'\#' => '\5c23',
'(' => '\28',
')' => '\29',
'*' => '\2A',
);
$dn = str_replace(array_keys($replacements), array_values($replacements), $dn);
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment