LDAP: escape some more chars for proper search filter, fixes #1673

This commit is contained in:
Arthur Schiwon 2013-03-05 14:33:20 +01:00
parent b08894ba77
commit 055fadd10d
1 changed files with 3 additions and 0 deletions

View File

@ -144,6 +144,9 @@ abstract class Access {
'\;' => '\5c3B',
'\"' => '\5c22',
'\#' => '\5c23',
'(' => '\28',
')' => '\29',
'*' => '\2A',
);
$dn = str_replace(array_keys($replacements), array_values($replacements), $dn);