X-Git-Url: http://wagnertech.de/git?a=blobdiff_plain;f=cf_custom_field_add.php;h=a5053054191a57e7cdf5e83f0e6f4d0608fb3f11;hb=c46106d305d91e93fb63c0d601a5a006a02bb63a;hp=1818b5722ac42192862c8baae7d383bcb764232c;hpb=251996aed11c648ecaa30f77383e0384bfadf7a5;p=timetracker.git diff --git a/cf_custom_field_add.php b/cf_custom_field_add.php index 1818b572..a5053054 100644 --- a/cf_custom_field_add.php +++ b/cf_custom_field_add.php @@ -43,7 +43,7 @@ if ($request->getMethod() == 'POST') { if (!$cl_required) $cl_required = 0; } - + $form = new Form('fieldForm'); $form->addInput(array('type'=>'text','maxlength'=>'100','name'=>'name','value'=>'')); $form->addInput(array('type'=>'combobox','name'=>'type', @@ -57,7 +57,7 @@ if ($request->getMethod() == 'POST') { // Validate user input. if (!ttValidString($cl_field_name)) $errors->add($i18n->getKey('error.field'), $i18n->getKey('label.thing_name')); - if ($errors->isEmpty()) { + if ($errors->no()) { $res = CustomFields::insertField($cl_field_name, $cl_field_type, $cl_required); if ($res) { header('Location: cf_custom_fields.php'); @@ -65,11 +65,10 @@ 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.fieldForm.name.focus()"'); $smarty->assign('title', $i18n->getKey('title.cf_add_custom_field')); $smarty->assign('content_page_name', 'cf_custom_field_add.tpl'); $smarty->display('index.tpl'); -?> \ No newline at end of file