X-Git-Url: http://wagnertech.de/git?a=blobdiff_plain;f=tasks.php;h=2d310d0114e219b20c0f460910b24c353b068648;hb=a490f47a3440b85efc7ef9c1795dd59dac60c83b;hp=6258831c85e39ab6f4c35e4632e01ef9938fbc8c;hpb=098a79f0819ebb89b7d48df4a6b154af4560f68e;p=timetracker.git diff --git a/tasks.php b/tasks.php index 6258831c..2d310d01 100644 --- a/tasks.php +++ b/tasks.php @@ -30,15 +30,19 @@ require_once('initialize.php'); import('form.Form'); import('ttTeamHelper'); -// Access check. -if (!ttAccessCheck(right_manage_team)) { +// Access checks. +if (!ttAccessAllowed('manage_tasks')) { header('Location: access_denied.php'); exit(); } +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)); -$smarty->assign('title', $i18n->getKey('title.tasks')); +$smarty->assign('title', $i18n->get('title.tasks')); $smarty->assign('content_page_name', 'tasks.tpl'); $smarty->display('index.tpl'); -?> \ No newline at end of file