diff options
author | Frederic Guillot <fred@kanboard.net> | 2016-03-07 19:23:25 -0500 |
---|---|---|
committer | Frederic Guillot <fred@kanboard.net> | 2016-03-07 19:23:25 -0500 |
commit | 122d50262aed02a892c59f90a0565074ca5815f3 (patch) | |
tree | a6b9e494d106971b1f7c99b63a774237d6d53cd7 /app | |
parent | 2bc2d347a6cbb6dff02d9c6a8e9da140fb9a9b82 (diff) | |
parent | f43f29930692ebb944f2574916f2b54fff9985c1 (diff) |
Merge pull-request #1962
Diffstat (limited to 'app')
-rw-r--r-- | app/Template/board/tooltip_files.php | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/app/Template/board/tooltip_files.php b/app/Template/board/tooltip_files.php index 39823757..8ee18626 100644 --- a/app/Template/board/tooltip_files.php +++ b/app/Template/board/tooltip_files.php @@ -8,9 +8,9 @@ </tr> <tr> <td> - <i class="fa fa-download fa-fw"></i><?= $this->url->link(t('download'), 'TaskFile', 'download', array('task_id' => $task['id'], 'project_id' => $task['project_id'], 'file_id' => $file['id'])) ?> + <i class="fa fa-download fa-fw"></i><?= $this->url->link(t('download'), 'FileViewer', 'download', array('task_id' => $task['id'], 'project_id' => $task['project_id'], 'file_id' => $file['id'])) ?> <?php if ($file['is_image'] == 1): ?> - <i class="fa fa-eye"></i> <?= $this->url->link(t('open file'), 'TaskFile', 'open', array('task_id' => $task['id'], 'project_id' => $task['project_id'], 'file_id' => $file['id']), false, 'popover') ?> + <i class="fa fa-eye"></i> <?= $this->url->link(t('open file'), 'FileViewer', 'show', array('task_id' => $task['id'], 'project_id' => $task['project_id'], 'file_id' => $file['id']), false, 'popover') ?> <?php endif ?> </td> </tr> |