summary | shortlog | log | commit | commitdiff | tree
raw | patch | inline | side by side (parent: 4612db3)
raw | patch | inline | side by side (parent: 4612db3)
author | hickert <hickert@594d385d-05f5-0310-b6e9-bd551577e9d8> | |
Wed, 15 Dec 2010 13:01:05 +0000 (13:01 +0000) | ||
committer | hickert <hickert@594d385d-05f5-0310-b6e9-bd551577e9d8> | |
Wed, 15 Dec 2010 13:01:05 +0000 (13:01 +0000) |
git-svn-id: https://oss.gonicus.de/repositories/gosa/branches/2.7@20569 594d385d-05f5-0310-b6e9-bd551577e9d8
gosa-core/plugins/admin/ogroups/class_ogroup.inc | patch | blob | history |
diff --git a/gosa-core/plugins/admin/ogroups/class_ogroup.inc b/gosa-core/plugins/admin/ogroups/class_ogroup.inc
index 4259cce195bc0fabcd21a2778ba3ce05ee9ed922..b4e75fccbab7d07519ad52b4121bbecd1e048918 100644 (file)
$this->used_workstations = array();
foreach($res as $og){
if($og['dn'] == $this->dn) continue;
- $test = array_intersect($ws_dns,$og['member']);
+ $test = array_intersect($ws_dns,LDAP::convert($og['member']));
if(($og['gosaGroupObjects'] == "[W]" || $og['gosaGroupObjects'] == "[T]") && count($test)){
$this->used_workstations = array_merge($this->used_workstations,$test);
}