X-Git-Url: http://wagnertech.de/gitweb/gitweb.cgi/timetracker.git/blobdiff_plain/db55bdb7b1dd2bcfa793437fe97a6777eb9d93a6..14a6ab5e563acb66d090c6c291b5d51b1a31fae7:/timesheet_view.php diff --git a/timesheet_view.php b/timesheet_view.php index 5079fe7b..e86b2df7 100644 --- a/timesheet_view.php +++ b/timesheet_view.php @@ -30,7 +30,7 @@ require_once('initialize.php'); import('ttTimesheetHelper'); // Access checks. -if (!(ttAccessAllowed('view_own_timesheets') || ttAccessAllowed('view_timesheets') || ttAccessAllowed('view_all_timesheets') || ttAccessAllowed('view_client_timesheets'))) { +if (!(ttAccessAllowed('view_own_timesheets') || ttAccessAllowed('view_timesheets') || ttAccessAllowed('view_all_timesheets'))) { header('Location: access_denied.php'); exit(); } @@ -60,7 +60,7 @@ $notClient = !$user->isClient(); // Determine which controls to show and obtain date for them. $showSubmit = $notClient && !$timesheet['submit_status']; if ($showSubmit) $approvers = ttTimesheetHelper::getApprovers($timesheet['user_id']); -$canApprove = $user->can('approve_timesheets') || $user_>can('approve_all_timesheets'); +$canApprove = $user->can('approve_timesheets') || $user->can('approve_all_timesheets'); $showApprove = $notClient && $timesheet['submit_status'] && $timesheet['approval_status'] == null; // Add a form with controls.