X-Git-Url: http://wagnertech.de/gitweb/gitweb.cgi/timetracker.git/blobdiff_plain/0a7886b373c91ef0c2c41307f81177d043c807be..cc89430b244535c67dbb7d1f8813a4ba56b1ffc0:/time_delete.php diff --git a/time_delete.php b/time_delete.php index 060311e8..5d721ab1 100644 --- a/time_delete.php +++ b/time_delete.php @@ -38,13 +38,13 @@ if (!(ttAccessAllowed('track_own_time') || ttAccessAllowed('track_time'))) { exit(); } $cl_id = (int)$request->getParameter('id'); -// Get the time record we are deleting. $time_rec = ttTimeHelper::getRecord($cl_id, $user->getActiveUser()); 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']);