X-Git-Url: http://wagnertech.de/gitweb/gitweb.cgi/timetracker.git/blobdiff_plain/903dae76e54a4e0c081532a8113c00ef1b56a1b5..fff7786bd4be1a6de9b200a8b546493b9bb739e5:/mobile/time_edit.php diff --git a/mobile/time_edit.php b/mobile/time_edit.php index 803ca4e4..1f8f7de9 100644 --- a/mobile/time_edit.php +++ b/mobile/time_edit.php @@ -40,15 +40,16 @@ if (!ttAccessAllowed('track_own_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['timesheet_id'] || $time_rec['invoice_id']) { + // Prohibit editing not ours, or 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');