Incrementing version for the previous change
[timetracker.git] / cf_custom_field_delete.php
index 6f42e31..4e17cd0 100644 (file)
@@ -41,20 +41,19 @@ $id = $request->getParameter('id');
 $form = new Form('fieldDeleteForm');
 
 if ($request->getMethod() == 'POST') {
-  if ($request->getParameter('btn_delete'))  {
-       // Delete button pressed.
-       $res = CustomFields::deleteField($id);
+  if ($request->getParameter('btn_delete')) {
+    // Delete button pressed.
+    $res = CustomFields::deleteField($id);
     if ($res) {
       header('Location: cf_custom_fields.php');
       exit();
-    } else {
+    } else
       $errors->add($i18n->getKey('error.db'));
-    }
   }
   if ($request->getParameter('btn_cancel')) {
-       // Cancel button pressed.
-       header('Location: cf_custom_fields.php');
-       exit();
+    // Cancel button pressed.
+    header('Location: cf_custom_fields.php');
+    exit();
   }
 } else {
   $field = CustomFields::getField($id);        
@@ -74,4 +73,3 @@ $smarty->assign('onload', 'onLoad="document.fieldDeleteForm.btn_cancel.focus()"'
 $smarty->assign('title', $i18n->getKey('title.cf_delete_custom_field'));
 $smarty->assign('content_page_name', 'cf_custom_field_delete.tpl');
 $smarty->display('index.tpl');
-?>
\ No newline at end of file