Fix encoding issue in mail subject

This commit is contained in:
Frédéric Guillot
2014-08-17 09:15:38 -07:00
parent 658123a232
commit 44e91721b0
4 changed files with 43 additions and 15 deletions

View File

@@ -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 ?>