Code

Apply fix for #3020
authorpsc <psc@594d385d-05f5-0310-b6e9-bd551577e9d8>
Fri, 3 Dec 2010 10:18:59 +0000 (10:18 +0000)
committerpsc <psc@594d385d-05f5-0310-b6e9-bd551577e9d8>
Fri, 3 Dec 2010 10:18:59 +0000 (10:18 +0000)
When loading member list of systems in an object group, make sure the
properly escaped name is saved via LDAP::convert(). This fixes a
warning message from the printGeneric class when the system is
instantiated during pass_attributes_to_members().

git-svn-id: https://oss.gonicus.de/repositories/gosa/branches/2.6-lhm@20513 594d385d-05f5-0310-b6e9-bd551577e9d8

trunk/gosa-plugins/goto/admin/ogroups/goto/class_termgroup.inc

index cf73a43db2dddc43a996981371fca4e30cfd619c..53e23ec4e152dafb7e3763f53ec51ffe4e2ae666 100644 (file)
@@ -65,7 +65,7 @@ class termgroup extends plugin
     if(isset($this->attrs['member'])){
       for ($i= 0; $i<$this->attrs['member']['count']; $i++){
         $member= $this->attrs['member'][$i];
-        array_push($this->member_dn, $member);
+        array_push($this->member_dn, @LDAP::convert($member));
         $ldap->cat($member, array('objectClass', 'macAddress', 'cn'));
         if ($ldap->success()){
           $attrs = $ldap->fetch();