Code

Fixed config base to have escaped special characters, too
authorcajus <cajus@594d385d-05f5-0310-b6e9-bd551577e9d8>
Tue, 18 Apr 2006 13:27:12 +0000 (13:27 +0000)
committercajus <cajus@594d385d-05f5-0310-b6e9-bd551577e9d8>
Tue, 18 Apr 2006 13:27:12 +0000 (13:27 +0000)
git-svn-id: https://oss.gonicus.de/repositories/gosa/trunk@3054 594d385d-05f5-0310-b6e9-bd551577e9d8

TODO
include/class_config.inc

diff --git a/TODO b/TODO
index 096a30b3ddb2a443c6d5f938e03c1f121c92741f..0a059ae42f5cffb219734f3eeabec5dcc8125653 100644 (file)
--- a/TODO
+++ b/TODO
@@ -42,8 +42,6 @@ Target for 2.4.1:
 
 * template is not found in LDAP anymore - even if present
 
-* groups -> user -> directory -> does not show all users
-
 
 Target for 2.5:
 ===============
index c571906d60c675fc573d919e43512713dc71c8d0..2da80f23c3cc9233654e06c021dbe14836844b52 100644 (file)
@@ -276,6 +276,9 @@ class config  {
       $this->current['BASE']= key($bases);
     }
 
+    /* Convert BASE to have escaped special characters */
+    $this->current['BASE']= @LDAP::fix($this->current['BASE']);
+
     /* Parse LDAP referral informations */
     if (!isset($this->current['ADMIN']) || !isset($this->current['PASSWORD'])){
       $url= $this->current['SERVER'];