Code

Added + to the ldap special char detection
authorhickert <hickert@594d385d-05f5-0310-b6e9-bd551577e9d8>
Tue, 21 Sep 2010 06:44:39 +0000 (06:44 +0000)
committerhickert <hickert@594d385d-05f5-0310-b6e9-bd551577e9d8>
Tue, 21 Sep 2010 06:44:39 +0000 (06:44 +0000)
git-svn-id: https://oss.gonicus.de/repositories/gosa/trunk@19776 594d385d-05f5-0310-b6e9-bd551577e9d8

gosa-core/include/functions.inc

index 1046a621cb385af17bcb5d569e6675e2b5c181bc..9e0219e57c5a5821e8cafb62bdcad0b2d8f2157e 100644 (file)
@@ -3792,13 +3792,12 @@ 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));
     $filterName = str_replace('\\,', '\\\\,', $fixed);
-
  
     // Create the target dn
     $oDN = "o={$dnName},".$config->current['BASE'];