diff options
Diffstat (limited to 'app/Action/TaskDuplicateAnotherProject.php')
-rw-r--r-- | app/Action/TaskDuplicateAnotherProject.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/app/Action/TaskDuplicateAnotherProject.php b/app/Action/TaskDuplicateAnotherProject.php index b76b3884..4ab88534 100644 --- a/app/Action/TaskDuplicateAnotherProject.php +++ b/app/Action/TaskDuplicateAnotherProject.php @@ -64,7 +64,7 @@ class TaskDuplicateAnotherProject extends Base */ public function doAction(array $data) { - $task = $this->task->getById($data['task_id']); + $task = $this->taskFinder->getById($data['task_id']); $this->task->duplicateToAnotherProject($this->getParam('project_id'), $task); return true; } |