summaryrefslogtreecommitdiff
path: root/app/Controller
diff options
context:
space:
mode:
Diffstat (limited to 'app/Controller')
-rw-r--r--app/Controller/Base.php2
-rw-r--r--app/Controller/Project.php2
-rw-r--r--app/Controller/Task.php2
3 files changed, 3 insertions, 3 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();
diff --git a/app/Controller/Project.php b/app/Controller/Project.php
index f998e5d6..39d8d1b0 100644
--- a/app/Controller/Project.php
+++ b/app/Controller/Project.php
@@ -447,7 +447,7 @@ class Project extends Base
$limit = 25;
$tasks = $this->taskFinder->getClosedTasks($project['id'], $offset, $limit, $order, $direction);
- $nb_tasks = $this->task->countByProjectId($project['id'], array(TaskModel::STATUS_CLOSED));
+ $nb_tasks = $this->taskFinder->countByProjectId($project['id'], array(TaskModel::STATUS_CLOSED));
$this->response->html($this->template->layout('project_tasks', array(
'pagination' => array(
diff --git a/app/Controller/Task.php b/app/Controller/Task.php
index 4c15d8df..1b20cf15 100644
--- a/app/Controller/Task.php
+++ b/app/Controller/Task.php
@@ -26,7 +26,7 @@ class Task extends Base
$this->forbidden(true);
}
- $task = $this->task->getDetails($this->request->getIntegerParam('task_id'));
+ $task = $this->taskFinder->getDetails($this->request->getIntegerParam('task_id'));
if (! $task) {
$this->notfound(true);