Code

Updated listing table summary
[gosa.git] / gosa-plugins / opsi / admin / opsi / class_opsiProperties.inc
index f44cce8bfe0666e7f07d7f44afdac248486aefb9..b7266c3322a1ccb2028e8964fbac3595d01484df 100644 (file)
@@ -31,6 +31,7 @@ class opsiProperties extends plugin
    */
   public function execute()
   {
+    plugin::execute();
     $ui =get_userinfo();
     $acl =  $ui->get_permissions($this->config->current['BASE'],"opsi/opsiProperties","");
     $smarty = get_smarty();
@@ -50,7 +51,7 @@ class opsiProperties extends plugin
     if(preg_match("/w/",$acl)){
       foreach($this->cfg as $name => $value){
         if(isset($_POST['value_'.$name])){
-          $this->cfg[$name]['DEFAULT'] = validate(get_post('value_'.$name));
+          $this->cfg[$name]['CURRENT'] = validate(get_post('value_'.$name));
         }
       }
     }