]> wagnertech.de Git - timetracker.git/blobdiff - cf_custom_field_add.php
Siwtched to using isPost() function
[timetracker.git] / cf_custom_field_add.php
index 056ce531abe9910b92d2e7cad0a3478fc09838e6..d6766ef2b6c2f9f30d865c6202934cf5004bf8dc 100644 (file)
@@ -36,7 +36,7 @@ if (!ttAccessCheck(right_manage_team)) {
   exit();
 }
 
-if ($request->getMethod() == 'POST') {
+if ($request->isPost()) {
   $cl_field_name = trim($request->getParameter('name'));
   $cl_field_type = $request->getParameter('type');
   $cl_required = $request->getParameter('required');
@@ -53,11 +53,11 @@ $form->addInput(array('type'=>'combobox','name'=>'type',
 $form->addInput(array('type'=>'checkbox','name'=>'required','data'=>1,'value'=>'0'));
 $form->addInput(array('type'=>'submit','name'=>'btn_add','value'=>$i18n->getKey('button.add')));       
 
-if ($request->getMethod() == 'POST') {
+if ($request->isPost()) {
   // 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');