Fix bug: wrong template name for subtasks tooltip due to previous file rename

This commit is contained in:
Frederic Guillot 2015-07-28 20:20:18 -04:00
parent 8d24e03b44
commit 2eeb58ae03
1 changed files with 1 additions and 1 deletions

View File

@ -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,
)));