]> wagnertech.de Git - timetracker.git/blobdiff - mobile/time_delete.php
Disallowed editing records assigned to timesheets.
[timetracker.git] / mobile / time_delete.php
index 10473260161d76f45b3361e8b903584233f18826..8ebb98a88f1f9b2a2b454efac6220fced2efb4e2 100644 (file)
@@ -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();
 }