Code

Updated LDAP - Character encoding handling
authorhickert <hickert@594d385d-05f5-0310-b6e9-bd551577e9d8>
Wed, 17 Nov 2010 09:54:03 +0000 (09:54 +0000)
committerhickert <hickert@594d385d-05f5-0310-b6e9-bd551577e9d8>
Wed, 17 Nov 2010 09:54:03 +0000 (09:54 +0000)
-Allows to use / in names now.

git-svn-id: https://oss.gonicus.de/repositories/gosa/trunk@20260 594d385d-05f5-0310-b6e9-bd551577e9d8

gosa-core/include/functions.inc

index cc3451475f5b47c63bba12626804be65688f2b87..1347ffff10d5974c37fa6235195a0ffa361af309 100644 (file)
@@ -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));