summary | shortlog | log | commit | commitdiff | tree
raw | patch | inline | side by side (parent: 4626d91)
raw | patch | inline | side by side (parent: 4626d91)
author | psc <psc@594d385d-05f5-0310-b6e9-bd551577e9d8> | |
Fri, 3 Dec 2010 10:18:59 +0000 (10:18 +0000) | ||
committer | psc <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
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 | patch | blob | history |
diff --git a/trunk/gosa-plugins/goto/admin/ogroups/goto/class_termgroup.inc b/trunk/gosa-plugins/goto/admin/ogroups/goto/class_termgroup.inc
index cf73a43db2dddc43a996981371fca4e30cfd619c..53e23ec4e152dafb7e3763f53ec51ffe4e2ae666 100644 (file)
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();