From: hickert Date: Wed, 17 Nov 2010 09:46:15 +0000 (+0000) Subject: Added slash to LDAP character conversion detection X-Git-Url: https://git.tokkee.org/?a=commitdiff_plain;h=e74c9765687ca9fb68bbfa05306ad714b75c2744;p=gosa.git Added slash to LDAP character conversion detection -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 --- diff --git a/gosa-core/include/functions.inc b/gosa-core/include/functions.inc index c986f7bcb..cc3451475 100644 --- a/gosa-core/include/functions.inc +++ b/gosa-core/include/functions.inc @@ -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));