From 6c47546649491dd3b58291527ab02ac8c44e7648 Mon Sep 17 00:00:00 2001 From: psc Date: Thu, 4 Feb 2010 15:49:01 +0000 Subject: [PATCH] Bugfix for Trac #1983 When getting a list of object groups add the missing fetching of the description, otherwise it cannot be displayed. git-svn-id: https://oss.gonicus.de/repositories/gosa/branches/2.6-lhm@15590 594d385d-05f5-0310-b6e9-bd551577e9d8 --- .../plugins/admin/ogroups/class_ogroupManagement.inc | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/trunk/gosa-core/plugins/admin/ogroups/class_ogroupManagement.inc b/trunk/gosa-core/plugins/admin/ogroups/class_ogroupManagement.inc index 72b51c0a1..7dc085c05 100644 --- a/trunk/gosa-core/plugins/admin/ogroups/class_ogroupManagement.inc +++ b/trunk/gosa-core/plugins/admin/ogroups/class_ogroupManagement.inc @@ -615,9 +615,9 @@ class ogroupManagement extends plugin $filter= "(&(cn=$Regex)(objectClass=gosaGroupOfNames)(|$filter))"; if($this->DivListOGroup->SubSearch){ - $res= get_sub_list($filter, "ogroups",get_ou('ogroupRDN'), $base, array("cn","objectClass","gosaGroupObjects"), GL_SIZELIMIT | GL_SUBSEARCH); + $res= get_sub_list($filter, "ogroups",get_ou('ogroupRDN'), $base, array("cn","objectClass","gosaGroupObjects", "description"), GL_SIZELIMIT | GL_SUBSEARCH); }else{ - $res= get_sub_list($filter, "ogroups",get_ou('ogroupRDN'), get_ou('ogroupRDN').$base, array("cn","objectClass","gosaGroupObjects"), GL_SIZELIMIT ); + $res= get_sub_list($filter, "ogroups",get_ou('ogroupRDN'), get_ou('ogroupRDN').$base, array("cn","objectClass","gosaGroupObjects", "description"), GL_SIZELIMIT ); } $this->ogrouplist= $res; -- 2.30.2