diff options
| author | Frederic Guillot <fred@kanboard.net> | 2015-02-14 16:11:13 -0500 |
|---|---|---|
| committer | Frederic Guillot <fred@kanboard.net> | 2015-02-14 16:11:13 -0500 |
| commit | f7e4c3928aba9cb7f5222cb4af67846312bbb435 (patch) | |
| tree | 78f5854a0bdc538c977bad718a11d605a4caaca6 /app/Template/tasklink/remove.php | |
| parent | 364382b1b58db8bf1bd2c8866e21c869a7a5d6d0 (diff) | |
Refactoring/simplification of the pull-request about links
Diffstat (limited to 'app/Template/tasklink/remove.php')
| -rw-r--r-- | app/Template/tasklink/remove.php | 6 |
1 files changed, 2 insertions, 4 deletions
diff --git a/app/Template/tasklink/remove.php b/app/Template/tasklink/remove.php index 2ed87be7..9322ec24 100644 --- a/app/Template/tasklink/remove.php +++ b/app/Template/tasklink/remove.php @@ -4,13 +4,11 @@ <div class="confirm"> <p class="alert alert-info"> - <?= t('Do you really want to remove this link with task #%s?', $link['task_inverse_id']) ?> - <br /> - + <?= t('Do you really want to remove this link with task #%d?', $link['opposite_task_id']) ?> </p> <div class="form-actions"> - <?= $this->a(t('Yes'), 'tasklink', 'remove', array('task_id' => $task['id'], 'link_id' => $link['id'], 'project_id' => $task['project_id']), true, 'btn btn-red') ?> + <?= $this->a(t('Yes'), 'tasklink', 'remove', array('link_id' => $link['id'], 'task_id' => $task['id'], 'project_id' => $task['project_id']), true, 'btn btn-red') ?> <?= t('or') ?> <?= $this->a(t('cancel'), 'task', 'show', array('task_id' => $task['id'], 'project_id' => $task['project_id'])) ?> </div> |
