summary | shortlog | log | commit | commitdiff | tree
raw | patch | inline | side by side (parent: a182bc3)
raw | patch | inline | side by side (parent: a182bc3)
author | hickert <hickert@594d385d-05f5-0310-b6e9-bd551577e9d8> | |
Thu, 30 Oct 2008 11:00:39 +0000 (11:00 +0000) | ||
committer | hickert <hickert@594d385d-05f5-0310-b6e9-bd551577e9d8> | |
Thu, 30 Oct 2008 11:00:39 +0000 (11:00 +0000) |
git-svn-id: https://oss.gonicus.de/repositories/gosa/trunk@12829 594d385d-05f5-0310-b6e9-bd551577e9d8
gosa-core/include/class_MultiSelectWindow.inc | patch | blob | history |
diff --git a/gosa-core/include/class_MultiSelectWindow.inc b/gosa-core/include/class_MultiSelectWindow.inc
index 0e40eab1e5547b792fd3837dc82859d95d8cceb1..73746231c71c0ed5bf4acd754f8aed25857879cc 100644 (file)
/* Get all departments within this subtree */
$s_filter = "";
$s_attrs = array("description","objectClass");
- $s_acls = array();
+ $s_acls = $this->module;
foreach($types as $name => $data){
$s_filter.= "(&(objectClass=gosaDepartment)(objectClass=".$data['OC'].")(".$data['ATTR']."=".$this->base_selection_regex."))";
$s_attrs[]= $data['ATTR'];
- $s_acls[] = "department/".$data['ACL'];
}
$tmp = get_list("(|".$s_filter.")",$s_acls,$this->selectedBase,$s_attrs,GL_NONE);