Code

Fixed User dialog, to detect changed attributes correctly
[gosa.git] / plugins / admin / applications / class_applicationParameters.inc
index de1d0495c967a052f4efeb48bfd8f568f53d1ede..da2bc67ccda9a92b266141c5739d828f2c780ce3 100644 (file)
@@ -35,6 +35,9 @@ class applicationParameters extends plugin
 
   function execute()
   {
+       /* Call parent execute */
+       plugin::execute();
+
        /* Do we need to flip is_account state? */
        if (isset($_POST['modify_state'])){
                $this->is_account= !$this->is_account;
@@ -49,6 +52,7 @@ class applicationParameters extends plugin
                } else {
                        $display= $this->show_header(_("Create options"),
                                _("This application has options disabled. You can enable them by clicking below."));
+                       $this->parent->by_object['application']->generateTemplate();
                        return ($display);
                }
        }
@@ -101,6 +105,7 @@ class applicationParameters extends plugin
        $smarty= get_smarty();
        $smarty->assign("table", $table);
        $display.= $smarty->fetch(get_template_path('parameters.tpl', TRUE));
+       $this->parent->by_object['application']->generateTemplate();
        return ($display);
   }
 
@@ -145,7 +150,7 @@ class applicationParameters extends plugin
 
        /* Check for valid option names */
        for ($i= 0; $i<count($this->option_name); $i++){
-               if (!preg_match ("/^[a-z0-9_]+$/", $this->option_name[$i])){
+               if (!preg_match ("/^[a-z0-9_]+$/i", $this->option_name[$i])){
                        $message[]= sprintf(_("Value '%s' specified as option name is not valid."), 
                                        $this->option_name[$i]);
                }