summary | shortlog | log | commit | commitdiff | tree
raw | patch | inline | side by side (parent: 282a9ed)
raw | patch | inline | side by side (parent: 282a9ed)
author | hickert <hickert@594d385d-05f5-0310-b6e9-bd551577e9d8> | |
Fri, 22 Feb 2008 11:53:31 +0000 (11:53 +0000) | ||
committer | hickert <hickert@594d385d-05f5-0310-b6e9-bd551577e9d8> | |
Fri, 22 Feb 2008 11:53:31 +0000 (11:53 +0000) |
git-svn-id: https://oss.gonicus.de/repositories/gosa/trunk@9065 594d385d-05f5-0310-b6e9-bd551577e9d8
gosa-core/plugins/admin/groups/class_groupManagement.inc | patch | blob | history |
diff --git a/gosa-core/plugins/admin/groups/class_groupManagement.inc b/gosa-core/plugins/admin/groups/class_groupManagement.inc
index e8e19f27f99630785716046f9d10162d9e9c1dbd..a2f244045b110acaebde7d6002f6924d67e3a3ed 100644 (file)
Only perfrom this search if ShowFunctionalGroups is unchecked, else leave arre empty */
$ff = "(&(cn=$Regex)(objectClass=posixGroup)(!(|(objectClass=gosaMailAccount)(objectClass=gosaApplicationGroup)$sfilter)))";
if ($SubSearch){
- $res = get_list($ff, "groups", $base,array("gidNumber", "cn", "description"), GL_SUBSEARCH);
+ $res = get_sub_list($ff, "groups",get_groups_ou(), $base,array("gidNumber", "cn", "description"), GL_SUBSEARCH);
} else {
- $res = get_list($ff, "groups", $base,array("gidNumber", "cn", "description"), GL_NONE);
+ $res = get_sub_list($ff, "groups",get_groups_ou(), $base,array("gidNumber", "cn", "description"), GL_NONE);
}
foreach($res as $attrs){
if (!isset($primaries[$attrs['gidNumber'][0]])){
$functional[$attrs['gidNumber'][0]]= $attrs['gidNumber'][0];
}
}
-
-
+
/********************
Search for the prepared filter
********************/