summary | shortlog | log | commit | commitdiff | tree
raw | patch | inline | side by side (parent: 77c5079)
raw | patch | inline | side by side (parent: 77c5079)
author | hickert <hickert@594d385d-05f5-0310-b6e9-bd551577e9d8> | |
Wed, 28 Oct 2009 17:00:11 +0000 (17:00 +0000) | ||
committer | hickert <hickert@594d385d-05f5-0310-b6e9-bd551577e9d8> | |
Wed, 28 Oct 2009 17:00:11 +0000 (17:00 +0000) |
git-svn-id: https://oss.gonicus.de/repositories/gosa/trunk@14685 594d385d-05f5-0310-b6e9-bd551577e9d8
gosa-core/plugins/admin/departments/class_departmentManagement.inc | patch | blob | history |
diff --git a/gosa-core/plugins/admin/departments/class_departmentManagement.inc b/gosa-core/plugins/admin/departments/class_departmentManagement.inc
index c875c546d2cb9735b475547a08a7b3d8603cebbb..96cea0fc604f200615c1e8cb542f8b623ea89159 100644 (file)
$this->storagePoints = array("");
// Build filter
- #if (session::global_is_set(get_class($this)."_filter")){
+ if (session::global_is_set(get_class($this)."_filter")){
$filter= session::global_get(get_class($this)."_filter");
-# } else {
+ } else {
$filter = new filter(get_template_path("dep-filter.xml", true));
- # $filter->setObjectStorage($this->storagePoints);
- # }
+ $filter->setObjectStorage($this->storagePoints);
+ }
$this->setFilter($filter);
// Build headpage
function newEntry($action="",$target=array(),$all=array(), $altTabClass ="", $altTabType = "", $altAclCategory="")
{
+ echo "Remember to add recursive move and department tagging again!";
$types= $this->get_support_departments();
$type = preg_replace("/^new_/","",$action);
return(management::newEntry($action,$target,$all,$this->tabClass,$types[$type]['TAB'],$this->aclCategory));