Improve file attachments tooltip on the board

This commit is contained in:
Frederic Guillot
2015-08-23 11:09:14 -04:00
parent dd239ddb59
commit 1f2f5d2c10
3 changed files with 20 additions and 33 deletions

View File

@@ -179,8 +179,7 @@ class Board extends Base
$task = $this->getTask();
$this->response->html($this->template->render('board/tooltip_files', array(
'files' => $this->file->getAllDocuments($task['id']),
'images' => $this->file->getAllImages($task['id']),
'files' => $this->file->getAll($task['id']),
'task' => $task,
)));
}