Code

Fix filter box generation
authorhickert <hickert@594d385d-05f5-0310-b6e9-bd551577e9d8>
Fri, 19 May 2006 08:23:19 +0000 (08:23 +0000)
committerhickert <hickert@594d385d-05f5-0310-b6e9-bd551577e9d8>
Fri, 19 May 2006 08:23:19 +0000 (08:23 +0000)
git-svn-id: https://oss.gonicus.de/repositories/gosa/trunk@3451 594d385d-05f5-0310-b6e9-bd551577e9d8

plugins/admin/applications/class_divListApplication.inc

index 83ffd9cd65534f4fdb96f5379ac4a78e0e5a9b0a..4f4634cd8848c992a48de9f253c61692670cfc3b 100755 (executable)
@@ -53,7 +53,8 @@ class divListApplication extends MultiSelectWindow
 
   function AddUserBoxToFilter($position){
     $str = "";
-    if(($position  == 2) && ($this->parent->enableReleaseManagement)){
+    print_a($this->parent);
+    if(($position  == 2) && ($this->parent->IsReleaseManagementActivated($this->config))){
       $smarty = get_smarty();
       $smarty->assign("selectedRelease",$this->selectedRelease);
       $smarty->assign("branchimage","images/branch.png");
@@ -175,6 +176,7 @@ class divListApplication extends MultiSelectWindow
     MultiSelectWindow::save_object(); 
     $_SESSION['appfilter']['release']  = $this->selectedRelease;
   }
+
 }
 // vim:tabstop=2:expandtab:shiftwidth=2:filetype=php:syntax:ruler:
 ?>