From adceb5ccf5252d6219a68677f47812258570bab8 Mon Sep 17 00:00:00 2001 From: gRoussac Date: Mon, 5 Aug 2013 19:16:44 +0200 Subject: [PATCH] [-] Fo : Bad date format in order-detail, merge from https://github.com/PrestaShop/PrestaShop/pull/476 thanks @gbelorgey --- themes/default/order-detail.tpl | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/themes/default/order-detail.tpl b/themes/default/order-detail.tpl index e0bbedb64..b1a0144c7 100644 --- a/themes/default/order-detail.tpl +++ b/themes/default/order-detail.tpl @@ -325,7 +325,7 @@ {foreach from=$order->getShipping() item=line} - {$line.date_add} + {dateFormat date=$line.date_add full=0} {$line.carrier_name} {if $line.weight > 0}{$line.weight|string_format:"%.3f"} {Configuration::get('PS_WEIGHT_UNIT')}{else}-{/if} {if $order->getTaxCalculationMethod() == $smarty.const.PS_TAX_INC}{displayPrice price=$line.shipping_cost_tax_incl currency=$currency->id}{else}{displayPrice price=$line.shipping_cost_tax_excl currency=$currency->id}{/if}