Fixed rendering of created date in shipments register. Closes #10
This commit is contained in:
parent
1a349e2b75
commit
b3f5c536dd
|
|
@ -38,7 +38,7 @@
|
|||
<td>
|
||||
<?php
|
||||
$unixtime = strtotime($shipment['Shipment']['created']);
|
||||
$dateString = date('j M Y');
|
||||
$dateString = date('j M Y', $unixtime);
|
||||
echo $dateString;
|
||||
?>
|
||||
|
||||
|
|
|
|||
Loading…
Reference in a new issue