diff options
author | Frédéric Guillot <fred@kanboard.net> | 2014-08-17 09:15:38 -0700 |
---|---|---|
committer | Frédéric Guillot <fred@kanboard.net> | 2014-08-17 09:15:38 -0700 |
commit | 44e91721b0edec28b4e37d3c6b8847854c108233 (patch) | |
tree | fe7c34e6a2395bb1ea1c9a597278d1b2aa03ac10 /app/Templates/notification_task_update.php | |
parent | 658123a2328867a87da59ca660a7044d99eea22c (diff) |
Fix encoding issue in mail subject
Diffstat (limited to 'app/Templates/notification_task_update.php')
-rw-r--r-- | app/Templates/notification_task_update.php | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/app/Templates/notification_task_update.php b/app/Templates/notification_task_update.php index 28be9db2..3f61dd2f 100644 --- a/app/Templates/notification_task_update.php +++ b/app/Templates/notification_task_update.php @@ -11,13 +11,13 @@ <?php endif ?> <?php if ($task['creator_username']): ?> <li> - <?= t('Created by %s', $task['creator_username']) ?> + <?= t('Created by %s', $task['creator_name'] ?: $task['creator_username']) ?> </li> <?php endif ?> <li> <strong> <?php if ($task['assignee_username']): ?> - <?= t('Assigned to %s', $task['assignee_username']) ?> + <?= t('Assigned to %s', $task['assignee_name'] ?: $task['assignee_username']) ?> <?php else: ?> <?= t('There is nobody assigned') ?> <?php endif ?> |