diff options
Diffstat (limited to 'app/Controller')
-rw-r--r-- | app/Controller/Board.php | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/app/Controller/Board.php b/app/Controller/Board.php index 976e44fc..179c6b3c 100644 --- a/app/Controller/Board.php +++ b/app/Controller/Board.php @@ -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, ))); } |