Show a start next to the assignee (current user), pull-request #373

This commit is contained in:
Frédéric Guillot 2014-12-14 18:28:15 -05:00
parent 5a28e9095d
commit 4e695a9fcf
1 changed files with 2 additions and 1 deletions

View File

@ -40,7 +40,8 @@
<span class="task-board-user">
<?= Helper\a(
! empty($task['owner_id']) ? t('Assigned to %s', $task['assignee_name'] ?: $task['assignee_username']) : t('Nobody assigned'),
(! empty($task['owner_id']) ? t('Assigned to %s', $task['assignee_name'] ?: $task['assignee_username']) : t('Nobody assigned')) .
( Helper\is_current_user($task['owner_id']) ? '&nbsp;<i class="fa fa-star"></i>' : ''),
'board',
'changeAssignee',
array('task_id' => $task['id']),