X-Git-Url: http://wagnertech.de/git?a=blobdiff_plain;f=mobile%2Ftime_delete.php;h=399895c7a8eac84ce47c4c4b9a519ecb900feab1;hb=2908e17af44b65d6a97e299edd03293ddd802802;hp=33ba614688287ea26f33ee233a0b3a7d844b6b17;hpb=fd0872d9e582113346fa1e93557f370286c5c9f2;p=timetracker.git diff --git a/mobile/time_delete.php b/mobile/time_delete.php index 33ba6146..399895c7 100644 --- a/mobile/time_delete.php +++ b/mobile/time_delete.php @@ -32,17 +32,19 @@ import('ttUserHelper'); import('ttTimeHelper'); import('DateAndTime'); -// Access check. +// Access checks. if (!ttAccessAllowed('track_own_time')) { header('Location: access_denied.php'); exit(); } - -$cl_id = $request->getParameter('id'); +$cl_id = (int)$request->getParameter('id'); $time_rec = ttTimeHelper::getRecord($cl_id, $user->getActiveUser()); - -// Prohibit deleting invoiced records. -if ($time_rec['invoice_id']) die($i18n->get('error.sys')); +if (!$time_rec || $time_rec['invoice_id']) { + // Prohibit deleting not ours or invoiced records. + header('Location: access_denied.php'); + exit(); +} +// End of access checks. // Escape comment for presentation. $time_rec['comment'] = htmlspecialchars($time_rec['comment']);