diff options
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> |