diff options
Diffstat (limited to 'app/Template/event/task_move_position.php')
-rw-r--r-- | app/Template/event/task_move_position.php | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/app/Template/event/task_move_position.php b/app/Template/event/task_move_position.php index 86e09953..412a9401 100644 --- a/app/Template/event/task_move_position.php +++ b/app/Template/event/task_move_position.php @@ -1,5 +1,10 @@ <p class="activity-title"> - <?= e('%s moved the task <a href="?controller=task&action=show&task_id=%d">#%d</a> to the position #%d in the column "%s"', $this->e($author), $task_id, $task_id, $task['position'], $this->e($task['column_title'])) ?> + <?= e('%s moved the task %s to the position #%d in the column "%s"', + $this->e($author), + $this->a(t('#%d', $task['id']), 'task', 'show', array('task_id' => $task['id'], 'project_id' => $task['project_id'])), + $task['position'], + $this->e($task['column_title']) + ) ?> </p> <p class="activity-description"> <em><?= $this->e($task['title']) ?></em> |