Merge manually pull-request #965
This commit is contained in:
parent
d3f3669840
commit
b054790200
|
|
@ -54,6 +54,7 @@ Contributors:
|
|||
- [Norcnorc](https://github.com/norcnorc)
|
||||
- [Nramel](https://github.com/nramel)
|
||||
- [Null-Kelvin](https://github.com/Null-Kelvin)
|
||||
- [Olaf Lessenich](https://github.com/xai)
|
||||
- [Oliver Bertuch](https://github.com/poikilotherm)
|
||||
- [Olivier Maridat](https://github.com/oliviermaridat)
|
||||
- [Oren Ben-Kiki](https://github.com/orenbenkiki)
|
||||
|
|
|
|||
|
|
@ -21,7 +21,8 @@
|
|||
<div class="task-board-icons">
|
||||
<?php if (! empty($task['date_due'])): ?>
|
||||
<span class="task-board-date <?= time() > $task['date_due'] ? 'task-board-date-overdue' : '' ?>">
|
||||
<i class="fa fa-calendar"></i> <?= dt('%b %e', $task['date_due']) ?>
|
||||
<i class="fa fa-calendar"></i>
|
||||
<?= (date('Y') === date('Y', $task['date_due']) ? dt('%b %e', $task['date_due']) : dt('%b %e %Y', $task['date_due'])) ?>
|
||||
</span>
|
||||
<?php endif ?>
|
||||
|
||||
|
|
|
|||
Loading…
Reference in New Issue