X-Git-Url: http://wagnertech.de/git?a=blobdiff_plain;f=week.php;h=b4a9176ed357c86e7a338ef2dd5729ed7f0cb3a9;hb=cdd2e058776a3d0dc9b6f32a2d5d33e4f9388491;hp=1dd6e56a58530e784a84010c28da7dcd11d229c8;hpb=58057bc7a8634917640cc660971bfc3c8440a687;p=timetracker.git diff --git a/week.php b/week.php index 1dd6e56a..b4a9176e 100644 --- a/week.php +++ b/week.php @@ -91,7 +91,7 @@ if ($user->isPluginEnabled('cf')) { if ($user->isPluginEnabled('mq')){ require_once('plugins/MonthlyQuota.class.php'); $quota = new MonthlyQuota(); - $month_quota_minutes = $quota->get($selected_date->mYear, $selected_date->mMonth); + $month_quota_minutes = $quota->getUserQuota($selected_date->mYear, $selected_date->mMonth); $month_total = ttTimeHelper::getTimeForMonth($selected_date); $minutes_left = $month_quota_minutes - ttTimeHelper::toMinutes($month_total); @@ -507,6 +507,9 @@ $smarty->assign('onload', 'onLoad="fillDropdowns()"'); $smarty->assign('timestring', $startDate->toString($user->date_format).' - '.$endDate->toString($user->date_format)); $smarty->assign('time_records', $records); +//$showFiles = $user->isPluginEnabled('at'); +//$smarty->assign('show_files', $showFiles); + $smarty->assign('title', $i18n->get('title.time')); $smarty->assign('content_page_name', 'week.tpl'); $smarty->display('index.tpl');