Switched to using shorter ActionErrors functions
[timetracker.git] / cf_dropdown_option_add.php
index 5dd2c57..c1fa7e0 100644 (file)
@@ -40,21 +40,21 @@ $cl_field_id = $request->getParameter('field_id');
 $field = CustomFields::getField($cl_field_id);
 if (false === $field)
   $errors->add($i18n->getKey('error.db'));
-    
+
 $form = new Form('optionAddForm');
-if ($errors->isEmpty()) {
+if ($errors->no()) {
   $form->addInput(array('type'=>'hidden','name'=>'field_id','value'=>$cl_field_id));
   $form->addInput(array('type'=>'text','maxlength'=>'100','name'=>'name','value'=>''));
   $form->addInput(array('type'=>'submit','name'=>'btn_add','value'=>$i18n->getKey('button.add')));
 }
-  
+
 if ($request->getMethod() == 'POST') {
   $cl_option_name = trim($request->getParameter('name'));
-  
+
   // Validate user input.
   if (!ttValidString($cl_option_name)) $errors->add($i18n->getKey('error.field'), $i18n->getKey('label.thing_name'));
-         
-  if ($errors->isEmpty()) {
+
+  if ($errors->no()) {
     $res = CustomFields::insertOption($cl_field_id, $cl_option_name);
     if ($res) {
       header("Location: cf_dropdown_options.php?field_id=$cl_field_id");
@@ -62,7 +62,7 @@ if ($request->getMethod() == 'POST') {
     } else
       $errors->add($i18n->getKey('error.db'));
   }
-}
+} // POST
 
 $smarty->assign('forms', array($form->getName()=>$form->toArray()));
 $smarty->assign('onload', 'onLoad="document.optionAddForm.name.focus()"');