X-Git-Url: http://wagnertech.de/git?a=blobdiff_plain;f=timesheet_view.php;h=d0198c780ca6e51622d8db2d3e55986b43252987;hb=840056890d9b574fcc62fdf386db346f133baa91;hp=bde974e67317b3bf339f7bf83d443daac86a64b0;hpb=a8084d2e767dd2ea7e57f2348a27d4fc2da42a6f;p=timetracker.git diff --git a/timesheet_view.php b/timesheet_view.php index bde974e6..d0198c78 100644 --- a/timesheet_view.php +++ b/timesheet_view.php @@ -28,6 +28,7 @@ require_once('initialize.php'); import('ttTimesheetHelper'); +import('ttReportHelper'); // Access checks. if (!(ttAccessAllowed('track_own_time') || ttAccessAllowed('track_time'))) { @@ -59,11 +60,11 @@ $totals = ttReportHelper::getTotals($options); // Determine which controls to show and obtain date for them. $showSubmit = !$timesheet['submit_status']; if ($showSubmit) { - $approvers = ttTimesheetHelper::getApprovers($timesheet['user_id']); + $approvers = ttTimesheetHelper::getApprovers(); $showApprovers = count($approvers) >= 1; } $canApprove = $user->can('approve_timesheets') || $user->can('approve_own_timesheets'); -$showApprove = $timesheet['submit_status'] && $timesheet['approval_status'] == null; +$showApprove = $timesheet['submit_status'] && $timesheet['approve_status'] == null; // Add a form with controls. $form = new Form('timesheetForm');