X-Git-Url: http://wagnertech.de/gitweb/gitweb.cgi/timetracker.git/blobdiff_plain/2d7329ba9ee02d996db189a87d79a02a877dd924..75f8d0ae1ade35bbe0b0efec6932cd55725ab152:/mobile/time_edit.php diff --git a/mobile/time_edit.php b/mobile/time_edit.php index 1f8f7de9..e81f693c 100644 --- a/mobile/time_edit.php +++ b/mobile/time_edit.php @@ -41,8 +41,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 editing not ours, or assigned to timesheet, or invoiced records. +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(); }