diff options
Diffstat (limited to 'app/Template/file/remove.php')
-rw-r--r-- | app/Template/file/remove.php | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/app/Template/file/remove.php b/app/Template/file/remove.php index 4f655e5a..3e542c05 100644 --- a/app/Template/file/remove.php +++ b/app/Template/file/remove.php @@ -4,12 +4,12 @@ <div class="confirm"> <p class="alert alert-info"> - <?= t('Do you really want to remove this file: "%s"?', Helper\escape($file['name'])) ?> + <?= t('Do you really want to remove this file: "%s"?', $this->e($file['name'])) ?> </p> <div class="form-actions"> - <?= Helper\a(t('Yes'), 'file', 'remove', array('task_id' => $task['id'], 'file_id' => $file['id']), true, 'btn btn-red') ?> + <?= $this->a(t('Yes'), 'file', 'remove', array('task_id' => $task['id'], 'file_id' => $file['id']), true, 'btn btn-red') ?> <?= t('or') ?> - <?= Helper\a(t('cancel'), 'task', 'show', array('task_id' => $task['id'])) ?> + <?= $this->a(t('cancel'), 'task', 'show', array('task_id' => $task['id'])) ?> </div> </div>
\ No newline at end of file |