X-Git-Url: http://wagnertech.de/git?a=blobdiff_plain;f=tasks.php;h=c3903f94e7e50087654ce33484de6335a37733a0;hb=47676f16efdde0b36a4ed09d2ab0476584aeb2a6;hp=5505e6dddab5d3e7abc19272a39d7d07441089c7;hpb=a8a4278a6a87c600835890a10c774dfdc58e930a;p=timetracker.git diff --git a/tasks.php b/tasks.php index 5505e6dd..c3903f94 100644 --- a/tasks.php +++ b/tasks.php @@ -31,7 +31,7 @@ import('form.Form'); import('ttTeamHelper'); // Access checks. -if (!ttAccessAllowed('manage_tasks')) { +if (!(ttAccessAllowed('view_own_tasks') || ttAccessAllowed('manage_tasks'))) { header('Location: access_denied.php'); exit(); } @@ -39,9 +39,16 @@ if (MODE_PROJECTS_AND_TASKS != $user->tracking_mode) { header('Location: feature_disabled.php'); exit(); } +// End of access checks. -$smarty->assign('active_tasks', ttTeamHelper::getActiveTasks($user->team_id)); -$smarty->assign('inactive_tasks', ttTeamHelper::getInactiveTasks($user->team_id)); +if($user->can('manage_tasks')) { + $active_tasks = ttTeamHelper::getActiveTasks($user->group_id); + $inactive_tasks = ttTeamHelper::getInactiveTasks($user->group_id); +} else + $active_tasks = $user->getAssignedTasks(); + +$smarty->assign('active_tasks', $active_tasks); +$smarty->assign('inactive_tasks', $inactive_tasks); $smarty->assign('title', $i18n->get('title.tasks')); $smarty->assign('content_page_name', 'tasks.tpl'); $smarty->display('index.tpl');