X-Git-Url: http://wagnertech.de/gitweb/gitweb.cgi/timetracker.git/blobdiff_plain/d40f3b7898583d430d651cc5210994cf55dd5b13..e3cdaaf8e6b4e5433ec620396e562de1a5dcec10:/timesheets.php diff --git a/timesheets.php b/timesheets.php index b3b47772..b7ce44b8 100644 --- a/timesheets.php +++ b/timesheets.php @@ -57,7 +57,7 @@ if ($request->isPost()) { } // End of access checks. -// Determine user for which we display this page. +// Determine user for whom we display this page. if ($request->isPost() && $userChanged) { $user_id = $request->getParameter('user'); $user->setOnBehalfUser($user_id); @@ -67,6 +67,8 @@ if ($request->isPost() && $userChanged) { $group_id = $user->getGroup(); +$showFiles = $user->isPluginEnabled('at'); + // Elements of timesheetsForm. $form = new Form('timesheetsForm'); @@ -98,6 +100,7 @@ $showClient = $user->isPluginEnabled('cl'); $smarty->assign('active_timesheets', $active_timesheets); $smarty->assign('inactive_timesheets', $inactive_timesheets); $smarty->assign('show_client', $showClient); +$smarty->assign('show_files', $showFiles); $smarty->assign('forms', array($form->getName()=>$form->toArray())); $smarty->assign('title', $i18n->get('title.timesheets')); $smarty->assign('content_page_name', 'timesheets.tpl');