Code

Added acls to mimetype
[gosa.git] / plugins / admin / fai / class_faiPackageNew.inc
index ebe1393fb8d904ea10225f5ab1eb0a6d9a70e027..0791fe11d9fefc4f4c7bfc0810954a6c42f5d241 100644 (file)
@@ -32,6 +32,8 @@ class faiPackageNew extends plugin
     $display = "";
     $smarty = get_smarty(); 
     $atr = $this->getServerInfos(); 
+
+    $releases= array();
     foreach($atr as $release => $sections){
       $releases[$release]=$release;
     }
@@ -49,7 +51,6 @@ class faiPackageNew extends plugin
     }
 
     $smarty->assign("releases"    ,$releases);
-    $smarty->assign("releaseKeys" ,array_flip($releases));
     $smarty->assign("release" ,$this->FAIdebianRelease);
     $smarty->assign("sections",$this->generateSections($sections));
 
@@ -63,12 +64,11 @@ class faiPackageNew extends plugin
     if(is_array($secs)){
       sort($secs);
       $secs= array_unique($secs);
-      $rel  = " onClick='document.mainform.submit();' ";
       foreach($secs as $section){
         if(in_array($section,$this->FAIdebianSection)){
-          $str .= "<input ".$rel." type='checkbox' value='".$section."' name='section_".$section."' checked>".$section."<br>";
+          $str .= "<input type='checkbox' value='".$section."' name='section_".$section."' checked>".$section."<br>";
         }else{
-          $str .= "<input ".$rel." type='checkbox' value='".$section."' name='section_".$section."'>".$section."<br>";
+          $str .= "<input type='checkbox' value='".$section."' name='section_".$section."'>".$section."<br>";
         }
         $str .="<input type='hidden' name='wasOnPage_".$section."'>";
       }
@@ -137,7 +137,9 @@ class faiPackageNew extends plugin
   /* Check supplied data */
   function check()
   {
-    $message= array();
+    /* Call common method to give check the hook */
+    $message= plugin::check();
+
     return ($message);
   }