Code

Applied patches from lhm commits
authorhickert <hickert@594d385d-05f5-0310-b6e9-bd551577e9d8>
Wed, 15 Dec 2010 13:01:05 +0000 (13:01 +0000)
committerhickert <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

index 4259cce195bc0fabcd21a2778ba3ce05ee9ed922..b4e75fccbab7d07519ad52b4121bbecd1e048918 100644 (file)
@@ -123,7 +123,7 @@ class ogroup extends plugin
         $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);
             }