diff options
author | ashbike <helloashbike@gmail.com> | 2015-02-13 11:45:55 +0530 |
---|---|---|
committer | ashbike <helloashbike@gmail.com> | 2015-02-13 11:45:55 +0530 |
commit | 0c60489b08379c7fa5e7fb2417e0ad20b4a1dadf (patch) | |
tree | 27820a829b868cab9a71d8fd786f67fb191de564 /app/Template | |
parent | 8fde5df4f829e9ea2c3a9262512a34a584e4b4e5 (diff) |
Task age and days in column shows hours if < 1 day
Diffstat (limited to 'app/Template')
-rw-r--r-- | app/Template/board/task.php | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/app/Template/board/task.php b/app/Template/board/task.php index 5cad4004..1608e337 100644 --- a/app/Template/board/task.php +++ b/app/Template/board/task.php @@ -69,8 +69,8 @@ ) ?> </span> - <span title="<?= t('Task age in days')?>" class="task-days-age"><?= t('%dd', floor(time()/86400) - floor($task['date_creation']/86400)) ?></span> - <span title="<?= t('Days in this column')?>" class="task-days-incolumn"><?= t('%dd', floor(time()/86400) - floor($task['date_moved']/86400)) ?></span> + <span title="<?= t('Task age in days')?>" class="task-days-age"><?= getAgeShort ($task['date_creation']) ?></span> + <span title="<?= t('Days in this column')?>" class="task-days-incolumn"><?= getAgeShort ($task['date_moved']) ?></span> <?php if ($task['score']): ?> <span class="task-score"><?= $this->e($task['score']) ?></span> |