summaryrefslogtreecommitdiff
path: root/app/Template/budget/index.php
diff options
context:
space:
mode:
authorFrederic Guillot <fred@kanboard.net>2015-04-02 20:18:07 -0400
committerFrederic Guillot <fred@kanboard.net>2015-04-02 20:18:07 -0400
commitc72bca04a8be19b2da699ee58f9203f08318d241 (patch)
treee5c8bc83042831d7021ab5834c7112c27eb022d3 /app/Template/budget/index.php
parent65acf68dc68d34f3aa5f658fcfb207087d052859 (diff)
Format dates on budget view
Diffstat (limited to 'app/Template/budget/index.php')
-rw-r--r--app/Template/budget/index.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/app/Template/budget/index.php b/app/Template/budget/index.php
index 442a6b64..01525829 100644
--- a/app/Template/budget/index.php
+++ b/app/Template/budget/index.php
@@ -25,7 +25,7 @@
</tr>
<?php foreach ($daily_budget as $line): ?>
<tr>
- <td><?= $this->e($line['date']) ?></td>
+ <td><?= dt('%B %e, %Y', strtotime($line['date'])) ?></td>
<td><?= n($line['in']) ?></td>
<td><?= n($line['out']) ?></td>
<td><?= n($line['left']) ?></td>