summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorFrédéric Guillot <fguillot@users.noreply.github.com>2017-04-12 20:20:00 -0400
committerGitHub <noreply@github.com>2017-04-12 20:20:00 -0400
commit209f981663974a32948fc2547a7031b28670c1fa (patch)
tree92de2047c3d034c8723dbbbdc9021587a6df02ae
parent660ba7b4827a3058d93a8f1c010925b4e9669ecf (diff)
parentca562bb909c2bceffffe054e345c646619cd32bf (diff)
Merge pull request #3194
-rw-r--r--app/Controller/TaskModificationController.php4
1 files changed, 3 insertions, 1 deletions
diff --git a/app/Controller/TaskModificationController.php b/app/Controller/TaskModificationController.php
index a53c1a38..1892a209 100644
--- a/app/Controller/TaskModificationController.php
+++ b/app/Controller/TaskModificationController.php
@@ -23,7 +23,9 @@ class TaskModificationController extends BaseController
{
$task = $this->getTask();
$values = array('id' => $task['id'], 'date_started' => time());
- $this->checkPermission($task, $values);
+ if (! $this->helper->projectRole->canUpdateTask($task)) {
+ throw new AccessForbiddenException(t('You are not allowed to update tasks assigned to someone else.'));
+ }
$this->taskModificationModel->update($values);
$this->response->redirect($this->helper->url->to('TaskViewController', 'show', array('project_id' => $task['project_id'], 'task_id' => $task['id'])));
}