Code

Removed force height
authorhickert <hickert@594d385d-05f5-0310-b6e9-bd551577e9d8>
Fri, 2 Jun 2006 07:00:35 +0000 (07:00 +0000)
committerhickert <hickert@594d385d-05f5-0310-b6e9-bd551577e9d8>
Fri, 2 Jun 2006 07:00:35 +0000 (07:00 +0000)
git-svn-id: https://oss.gonicus.de/repositories/gosa/trunk@3623 594d385d-05f5-0310-b6e9-bd551577e9d8

include/class_MultiSelectWindow.inc

index f201660a64c7d8f98059b6bd2bec98d8d9f7760f..2fb9a277e981c2d8ddc3e62efdb2920ba9d68830 100644 (file)
@@ -35,8 +35,6 @@ class MultiSelectWindow{
 
   var $SaveAdditionalVars = array();  // Additional Post vars to store 
 
-  var $force_height       = false;
-
        function ClearElementsList()
        {
                $this->array_Elements = array();
@@ -47,18 +45,6 @@ class MultiSelectWindow{
     $this->HideFilterPart = $bool;
   }
 
-  function ForceMaximumDivHeight($height = "")
-  {
-    $this->DivHeight    = $height;
-    if(!empty($height)){
-      $this->force_height = true;
-    }else{
-      $this->force_height = false;
-    }
-  }
-
-
-
        /* Adds a regex input field to the current dialog */
        function AddRegex($name,$string,$value,$conn,$image="images/search.png")
        {
@@ -356,8 +342,6 @@ class MultiSelectWindow{
                $smarty->assign("filterName"    ,       $this->filterName);
                $smarty->assign("is_headpage"   ,       $this->is_headpage);
 
-    $smarty->assign("force_height",$this->force_height);
-
                $display = $smarty->fetch(get_template_path("MultiSelectWindow.tpl"));
                return($display);
        }