diff options
Diffstat (limited to 'app/Template/budget/create.php')
-rw-r--r-- | app/Template/budget/create.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/app/Template/budget/create.php b/app/Template/budget/create.php index 5a919ce6..5b2976f4 100644 --- a/app/Template/budget/create.php +++ b/app/Template/budget/create.php @@ -17,7 +17,7 @@ <?php foreach ($lines as $line): ?> <tr> <td><?= n($line['amount']) ?></td> - <td><?= $this->e($line['date']) ?></td> + <td><?= dt('%B %e, %Y', strtotime($line['date'])) ?></td> <td><?= $this->e($line['comment']) ?></td> <td> <?= $this->a(t('Remove'), 'budget', 'confirm', array('project_id' => $project['id'], 'budget_id' => $line['id'])) ?> |