]> wagnertech.de Git - timetracker.git/blobdiff - cf_dropdown_option_edit.php
Introduced shorter functions for Errors class
[timetracker.git] / cf_dropdown_option_edit.php
index bd190435d72fca95ce9cbe4c62f5cd67be039ee5..f61225bcc0f12fc3480c17d730e2d01be4ee0b58 100644 (file)
@@ -46,11 +46,11 @@ if ($errors->isEmpty()) {
   $form->addInput(array('type'=>'text','maxlength'=>'100','name'=>'name','value'=>$cl_name));
   $form->addInput(array('type'=>'hidden','name'=>'id','value'=>$cl_id));
   $form->addInput(array('type'=>'submit','name'=>'btn_save','value'=>$i18n->getKey('button.save')));
-}      
+}
 
 if ($request->getMethod() == 'POST') {
   $cl_name = trim($request->getParameter('name'));
-  
+
   // Validate user input.
   if (!ttValidString($cl_name)) $errors->add($i18n->getKey('error.field'), $i18n->getKey('label.thing_name'));
 
@@ -61,15 +61,13 @@ if ($request->getMethod() == 'POST') {
       $field_id = CustomFields::getFieldIdForOption($cl_id);
       header("Location: cf_dropdown_options.php?field_id=$field_id");
       exit();
-    } else {
+    } else
       $errors->add($i18n->getKey('error.db'));
-    }
   }
-}
+} // POST
 
 $smarty->assign('forms', array($form->getName()=>$form->toArray()));
 $smarty->assign('onload', 'onLoad="document.optionEditForm.name.focus()"');
 $smarty->assign('title', $i18n->getKey('title.cf_edit_dropdown_option'));
 $smarty->assign('content_page_name', 'cf_dropdown_option_edit.tpl');
 $smarty->display('index.tpl');
-?>
\ No newline at end of file