diff options
author | Frederic Guillot <fred@kanboard.net> | 2016-02-05 19:19:39 -0500 |
---|---|---|
committer | Frederic Guillot <fred@kanboard.net> | 2016-02-05 19:19:39 -0500 |
commit | 9840fa8e07a609245c0db0c56c77cb83491b5acc (patch) | |
tree | 7187b7a72dcdd5f448221f88742d7a55158c48d8 /app/Controller/Task.php | |
parent | ae150d80c26cda93230b6e5a393841bf4c947245 (diff) |
Fix pagination on task time tracking page
Diffstat (limited to 'app/Controller/Task.php')
-rw-r--r-- | app/Controller/Task.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/app/Controller/Task.php b/app/Controller/Task.php index 0d463725..40ff8448 100644 --- a/app/Controller/Task.php +++ b/app/Controller/Task.php @@ -114,7 +114,7 @@ class Task extends Base $task = $this->getTask(); $subtask_paginator = $this->paginator - ->setUrl('task', 'timesheet', array('task_id' => $task['id'], 'project_id' => $task['project_id'], 'pagination' => 'subtasks')) + ->setUrl('task', 'timetracking', array('task_id' => $task['id'], 'project_id' => $task['project_id'], 'pagination' => 'subtasks')) ->setMax(15) ->setOrder('start') ->setDirection('DESC') |