]> wagnertech.de Git - timetracker.git/blobdiff - time_delete.php
Disallowed editing records assigned to timesheets.
[timetracker.git] / time_delete.php
index 385e4f11482d690798dff45c3e7f6041310a6ec8..1b6f5c2984bb48f9e82ee4e21c4df38f7249f82e 100644 (file)
@@ -40,8 +40,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 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();
 }
@@ -64,7 +64,7 @@ if ($request->isPost()) {
 
     if ($err->no()) {
       // Delete the record.
-      if (ttTimeHelper::delete($cl_id, $user_id)) {
+      if (ttTimeHelper::delete($cl_id)) {
         header('Location: time.php');
         exit();
       } else {