Added a capability to add new records from week view.
[timetracker.git] / tasks.php
index 6258831..3ea2faa 100644 (file)
--- a/tasks.php
+++ b/tasks.php
@@ -31,7 +31,7 @@ import('form.Form');
 import('ttTeamHelper');
 
 // Access check.
-if (!ttAccessCheck(right_manage_team)) {
+if (!ttAccessCheck(right_manage_team) || MODE_PROJECTS_AND_TASKS != $user->tracking_mode) {
   header('Location: access_denied.php');
   exit();
 }
@@ -41,4 +41,3 @@ $smarty->assign('inactive_tasks', ttTeamHelper::getInactiveTasks($user->team_id)
 $smarty->assign('title', $i18n->getKey('title.tasks'));
 $smarty->assign('content_page_name', 'tasks.tpl');
 $smarty->display('index.tpl');
-?>
\ No newline at end of file