summaryrefslogtreecommitdiff
path: root/app/Controller/DashboardController.php
diff options
context:
space:
mode:
Diffstat (limited to 'app/Controller/DashboardController.php')
-rw-r--r--app/Controller/DashboardController.php4
1 files changed, 2 insertions, 2 deletions
diff --git a/app/Controller/DashboardController.php b/app/Controller/DashboardController.php
index 6758381e..320ee4dd 100644
--- a/app/Controller/DashboardController.php
+++ b/app/Controller/DashboardController.php
@@ -36,9 +36,9 @@ class DashboardController extends BaseController
{
$user = $this->getUser();
- $this->response->html($this->helper->layout->dashboard('dashboard/tasks', array(
+ $this->response->html($this->helper->layout->dashboard('dashboard/project_tasks', array(
'title' => t('Tasks overview for %s', $this->helper->user->getFullname($user)),
- 'paginator' => $this->taskPagination->getDashboardPaginator($user['id'], 'tasks', 50),
+ 'paginator' => $this->taskPagination->getDashboardPerProjectPaginator($user['id'], 'tasks', 50),
'user' => $user,
)));
}