Code

Added slash to LDAP character conversion detection
authorhickert <hickert@594d385d-05f5-0310-b6e9-bd551577e9d8>
Wed, 17 Nov 2010 09:46:15 +0000 (09:46 +0000)
committerhickert <hickert@594d385d-05f5-0310-b6e9-bd551577e9d8>
Wed, 17 Nov 2010 09:46:15 +0000 (09:46 +0000)
-We were not able to open FAItemplates right now. Due to path names in their cn '/etc/network/interfaces'.-

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

gosa-core/include/functions.inc

index c986f7bcbae47c27e17d9aac8b99f9950ee7e3b3..cc3451475f5b47c63bba12626804be65688f2b87 100644 (file)
@@ -3612,8 +3612,8 @@ 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_\,_\"_(_)_\+';
+    $name = 'GOsaLdapEncoding_,_"_(_)_+_/';
+    $dnName = 'GOsaLdapEncoding_\,_\"_(_)_\+_\/';
    
     // Prapare name to be useable in filters
     $fixed= normalizeLdap(str_replace('\\\\', '\\\\\\', $name));