X-Git-Url: http://wagnertech.de/git?a=blobdiff_plain;f=mobile%2Ftime_delete.php;h=9e818e78adb35548667c6055eb804b95a282050d;hb=073ce24b1ae308defce4e057fc990607a3034380;hp=cd702f7bb8302712b02323e4678fbc3888d89669;hpb=1fad211ab12fc66117094e33425f8414fccd2cfa;p=timetracker.git diff --git a/mobile/time_delete.php b/mobile/time_delete.php index cd702f7b..9e818e78 100644 --- a/mobile/time_delete.php +++ b/mobile/time_delete.php @@ -53,7 +53,7 @@ if ($time_rec['invoice_id']) die($i18n->getKey('error.sys')); // Escape comment for presentation. $time_rec['comment'] = htmlspecialchars($time_rec['comment']); -if ($request->getMethod() == 'POST') { +if ($request->isPost()) { if ($request->getParameter('delete_button')) { // Delete button pressed. // Determine if it's okay to delete the record. @@ -70,10 +70,10 @@ if ($request->getMethod() == 'POST') { $uncompleted = ($time_rec['duration'] == '0:00'); if($lockdate && $item_date->before($lockdate) && !$uncompleted) { - $errors->add($i18n->getKey('error.period_locked')); + $err->add($i18n->getKey('error.period_locked')); } - if ($errors->no()) { + if ($err->no()) { // Delete the record. $result = ttTimeHelper::delete($cl_id, $user->getActiveUser()); @@ -82,7 +82,7 @@ if ($request->getMethod() == 'POST') { header('Location: time.php'); exit(); } else { - $errors->add($i18n->getKey('error.db')); + $err->add($i18n->getKey('error.db')); } } } @@ -90,7 +90,7 @@ if ($request->getMethod() == 'POST') { header('Location: time.php'); exit(); } -} // POST +} // isPost $form = new Form('timeRecordForm'); $form->addInput(array('type'=>'hidden','name'=>'id','value'=>$cl_id));