diff options
author | Frederic Guillot <fred@kanboard.net> | 2015-07-28 20:20:18 -0400 |
---|---|---|
committer | Frederic Guillot <fred@kanboard.net> | 2015-07-28 20:20:18 -0400 |
commit | 2eeb58ae0321f584652714080649302c3f83a831 (patch) | |
tree | ff2fef540bcda37ce53227b2c5553c0305c34525 /app | |
parent | 8d24e03b440ed5de90cae41f45d116c8f7e0f87c (diff) |
Fix bug: wrong template name for subtasks tooltip due to previous file rename
Diffstat (limited to 'app')
-rw-r--r-- | app/Controller/Subtask.php | 2 |
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, ))); |