From: hickert Date: Wed, 17 Nov 2010 09:54:03 +0000 (+0000) Subject: Updated LDAP - Character encoding handling X-Git-Url: https://git.tokkee.org/?a=commitdiff_plain;h=9650f31965da78da7ab421677d8663c505aa8b06;p=gosa.git Updated LDAP - Character encoding handling -Allows to use / in names now. git-svn-id: https://oss.gonicus.de/repositories/gosa/trunk@20260 594d385d-05f5-0310-b6e9-bd551577e9d8 --- diff --git a/gosa-core/include/functions.inc b/gosa-core/include/functions.inc index cc3451475..1347ffff1 100644 --- a/gosa-core/include/functions.inc +++ b/gosa-core/include/functions.inc @@ -3613,7 +3613,7 @@ function detectLdapSpecialCharHandling() // In the DN we've to use escaped characters, but the object name (o) // has the be un-escaped. $name = 'GOsaLdapEncoding_,_"_(_)_+_/'; - $dnName = 'GOsaLdapEncoding_\,_\"_(_)_\+_\/'; + $dnName = 'GOsaLdapEncoding_\,_\"_(_)_\+_/'; // Prapare name to be useable in filters $fixed= normalizeLdap(str_replace('\\\\', '\\\\\\', $name));