X-Git-Url: http://wagnertech.de/gitweb/gitweb.cgi/timetracker.git/blobdiff_plain/bfbd5b318b37a66ece219e719734a60249781b6d..66d86939b62dc5ae3d5f16088b61822e611cf58f:/mobile/time_delete.php diff --git a/mobile/time_delete.php b/mobile/time_delete.php index 10473260..8ebb98a8 100644 --- a/mobile/time_delete.php +++ b/mobile/time_delete.php @@ -40,8 +40,8 @@ if (!ttAccessAllowed('track_own_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 deleting not ours or invoiced records. +if (!$time_rec || $time_rec['timesheet_id'] || $time_rec['invoice_id']) { + // Prohibit deleting not ours, or assigned to timesheet, or invoiced records. header('Location: access_denied.php'); exit(); }