summaryrefslogtreecommitdiff
path: root/app/Controller/Subtask.php
diff options
context:
space:
mode:
authorFrederic Guillot <fred@kanboard.net>2015-07-28 20:20:18 -0400
committerFrederic Guillot <fred@kanboard.net>2015-07-28 20:20:18 -0400
commit2eeb58ae0321f584652714080649302c3f83a831 (patch)
treeff2fef540bcda37ce53227b2c5553c0305c34525 /app/Controller/Subtask.php
parent8d24e03b440ed5de90cae41f45d116c8f7e0f87c (diff)
Fix bug: wrong template name for subtasks tooltip due to previous file rename
Diffstat (limited to 'app/Controller/Subtask.php')
-rw-r--r--app/Controller/Subtask.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/app/Controller/Subtask.php b/app/Controller/Subtask.php
index 87f3fcb4..338918fb 100644
--- a/app/Controller/Subtask.php
+++ b/app/Controller/Subtask.php
@@ -186,7 +186,7 @@ class Subtask extends Base
$this->session['has_subtask_inprogress'] = $this->subtask->hasSubtaskInProgress($this->userSession->getId());
- $this->response->html($this->template->render('board/subtasks', array(
+ $this->response->html($this->template->render('board/tooltip_subtasks', array(
'subtasks' => $this->subtask->getAll($task['id']),
'task' => $task,
)));