X-Git-Url: http://wagnertech.de/git?a=blobdiff_plain;f=mobile%2Ftasks.php;h=c45f9bf04342224d60db82d4149ac76e0574d839;hb=2908e17af44b65d6a97e299edd03293ddd802802;hp=edb57089ebe81168d839331e75cf1eb236f183a3;hpb=dd2ba64b1b4aaddacec2b9f6763c0ed7a35efc3b;p=timetracker.git diff --git a/mobile/tasks.php b/mobile/tasks.php index edb57089..c45f9bf0 100644 --- a/mobile/tasks.php +++ b/mobile/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', 'mobile/tasks.tpl'); $smarty->display('mobile/index.tpl');