diff options
author | Frédéric Guillot <fred@kanboard.net> | 2014-07-26 09:02:30 -0400 |
---|---|---|
committer | Frédéric Guillot <fred@kanboard.net> | 2014-07-26 09:02:30 -0400 |
commit | bff39f59a0c8e717a7a1a0757d5bcc7cfecaa72e (patch) | |
tree | 9014aac075087a5090e4161a13184ce89904acc1 /app/Templates/task_show.php | |
parent | 74b59e31119c00411461c056d49a3b2ab57a7da5 (diff) |
Fix bug: wrong date displayed by strftime (#178)
Diffstat (limited to 'app/Templates/task_show.php')
-rw-r--r-- | app/Templates/task_show.php | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/app/Templates/task_show.php b/app/Templates/task_show.php index b28a3a08..a353d4d0 100644 --- a/app/Templates/task_show.php +++ b/app/Templates/task_show.php @@ -5,21 +5,21 @@ <?php endif ?> <ul> <li> - <?= dt('Created on %B %e, %G at %k:%M %p', $task['date_creation']) ?> + <?= dt('Created on %B %e, %Y at %k:%M %p', $task['date_creation']) ?> </li> <?php if ($task['date_modification']): ?> <li> - <?= dt('Last modified on %B %e, %G at %k:%M %p', $task['date_modification']) ?> + <?= dt('Last modified on %B %e, %Y at %k:%M %p', $task['date_modification']) ?> </li> <?php endif ?> <?php if ($task['date_completed']): ?> <li> - <?= dt('Completed on %B %e, %G at %k:%M %p', $task['date_completed']) ?> + <?= dt('Completed on %B %e, %Y at %k:%M %p', $task['date_completed']) ?> </li> <?php endif ?> <?php if ($task['date_due']): ?> <li> - <strong><?= dt('Must be done before %B %e, %G', $task['date_due']) ?></strong> + <strong><?= dt('Must be done before %B %e, %Y', $task['date_due']) ?></strong> </li> <?php endif ?> <?php if ($task['creator_username']): ?> |