blob: e9815853299a00b56a17bf36777f88aca6c11ca5 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
|
<p class="activity-title">
<?= e(
'%s change the assignee of the task <a href="?controller=task&action=show&task_id=%d">#%d</a> to %s',
$this->e($author),
$task_id,
$task_id,
$this->e($task['assignee_name'] ?: $task['assignee_username'])
) ?>
</p>
<p class="activity-description">
<em><?= $this->e($task['title']) ?></em>
</p>
|