X-Git-Url: http://wagnertech.de/gitweb/gitweb.cgi/timetracker.git/blobdiff_plain/903dae76e54a4e0c081532a8113c00ef1b56a1b5..66d86939b62dc5ae3d5f16088b61822e611cf58f:/time_edit.php diff --git a/time_edit.php b/time_edit.php index 3bd52e6f..48db27ea 100644 --- a/time_edit.php +++ b/time_edit.php @@ -42,8 +42,8 @@ if (!(ttAccessAllowed('track_own_time') || ttAccessAllowed('track_time'))) { $cl_id = (int)$request->getParameter('id'); $user_id = $user->getUser(); $time_rec = ttTimeHelper::getRecord($cl_id, $user_id); -if (!$time_rec || $time_rec['invoice_id']) { - // Prohibit editing not ours or invoiced records. +if (!$time_rec || $time_rec['timesheet_id'] || $time_rec['invoice_id']) { + // Prohibit editing not ours, or assigned to timesheet, or invoiced records. header('Location: access_denied.php'); exit(); }