]> wagnertech.de Git - timetracker.git/blobdiff - mobile/time_delete.php
Better protection against editing and deleting approved records.
[timetracker.git] / mobile / time_delete.php
index 1b122fb9edb36e01b0a4015f886fc95929ab5efc..a68da767a861e82fd48a9bfb6420f0bf51c59773 100644 (file)
@@ -39,8 +39,8 @@ if (!ttAccessAllowed('track_own_time')) {
 }
 $cl_id = (int)$request->getParameter('id');
 $time_rec = ttTimeHelper::getRecord($cl_id);
-if (!$time_rec || $time_rec['timesheet_id'] || $time_rec['invoice_id']) {
-  // Prohibit deleting not ours, or assigned to timesheet, or invoiced records.
+if (!$time_rec || $time_rec['approved'] || $time_rec['timesheet_id'] || $time_rec['invoice_id']) {
+  // Prohibit deleting not ours, approved, assigned to timesheet, or invoiced records.
   header('Location: access_denied.php');
   exit();
 }