diff options
Diffstat (limited to 'app/Controller/Base.php')
-rw-r--r-- | app/Controller/Base.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/app/Controller/Base.php b/app/Controller/Base.php index 9fab0752..ac88df04 100644 --- a/app/Controller/Base.php +++ b/app/Controller/Base.php @@ -276,7 +276,7 @@ abstract class Base */ protected function getTask() { - $task = $this->task->getDetails($this->request->getIntegerParam('task_id')); + $task = $this->taskFinder->getDetails($this->request->getIntegerParam('task_id')); if (! $task) { $this->notfound(); |