X-Git-Url: http://wagnertech.de/git?a=blobdiff_plain;ds=inline;f=time_edit.php;h=ef45226b883c0c59235c92c5f34f04b58c2e4a83;hb=5bbe544e3d2db9b79e5ea413e7994dcf0859f5f4;hp=3bd52e6f50e1f1f9492f6c5bdb797307b1819fde;hpb=903dae76e54a4e0c081532a8113c00ef1b56a1b5;p=timetracker.git diff --git a/time_edit.php b/time_edit.php index 3bd52e6f..ef45226b 100644 --- a/time_edit.php +++ b/time_edit.php @@ -40,15 +40,16 @@ if (!(ttAccessAllowed('track_own_time') || ttAccessAllowed('track_time'))) { exit(); } $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. +$time_rec = ttTimeHelper::getRecord($cl_id); +if (!$time_rec || $time_rec['approved'] || $time_rec['timesheet_id'] || $time_rec['invoice_id']) { + // Prohibit editing not ours, approved, assigned to timesheet, or invoiced records. header('Location: access_denied.php'); exit(); } // End of access checks. +$user_id = $user->getUser(); + // Use custom fields plugin if it is enabled. if ($user->isPluginEnabled('cf')) { require_once('plugins/CustomFields.class.php');