X-Git-Url: http://wagnertech.de/git?a=blobdiff_plain;f=mobile%2Ftime_edit.php;h=1f8f7de91ccbfc0a83969503b774c2d50fb098f9;hb=840056890d9b574fcc62fdf386db346f133baa91;hp=0b5b090e38f50dc2bcb055868abeffd935c660f5;hpb=66d86939b62dc5ae3d5f16088b61822e611cf58f;p=timetracker.git diff --git a/mobile/time_edit.php b/mobile/time_edit.php index 0b5b090e..1f8f7de9 100644 --- a/mobile/time_edit.php +++ b/mobile/time_edit.php @@ -40,8 +40,7 @@ if (!ttAccessAllowed('track_own_time')) { exit(); } $cl_id = (int)$request->getParameter('id'); -$user_id = $user->getUser(); -$time_rec = ttTimeHelper::getRecord($cl_id, $user_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. header('Location: access_denied.php'); @@ -49,6 +48,8 @@ if (!$time_rec || $time_rec['timesheet_id'] || $time_rec['invoice_id']) { } // 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');