From 5d044d3e916508bff33a7633e9cc7ef0af3c059b Mon Sep 17 00:00:00 2001 From: vChabot Date: Thu, 28 Jun 2012 15:56:14 +0000 Subject: [PATCH] [-] FO : BugFix : #PSCFV-2970 : Order history displays an error git-svn-id: http://dev.prestashop.com/svn/v1/branches/1.5.x@16154 b9a71923-0436-4b27-9f14-aed3839534dd --- themes/default/order-detail.tpl | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/themes/default/order-detail.tpl b/themes/default/order-detail.tpl index 65e3c0fd2..54151a352 100644 --- a/themes/default/order-detail.tpl +++ b/themes/default/order-detail.tpl @@ -95,7 +95,7 @@ {elseif $field_item eq "phone_mobile" && $address_invoice->phone_mobile}
  • {$address_invoice->phone_mobile|escape:'htmlall':'UTF-8'}
  • {else} {assign var=address_words value=" "|explode:$field_item} -
  • {foreach from=$address_words item=word_item name="word_loop"}{if !$smarty.foreach.word_loop.first} {/if}{$invoiceAddressFormatedValues[$word_item]|escape:'htmlall':'UTF-8'}{/foreach}
  • +
  • {foreach from=$address_words item=word_item name="word_loop"}{if !$smarty.foreach.word_loop.first} {/if}{$invoiceAddressFormatedValues[$word_item|replace:',':'']|escape:'htmlall':'UTF-8'}{/foreach}
  • {/if} {/foreach} @@ -108,7 +108,7 @@ {elseif $field_item eq "phone_mobile" && $address_delivery->phone_mobile}
  • {$address_delivery->phone_mobile|escape:'htmlall':'UTF-8'}
  • {else} {assign var=address_words value=" "|explode:$field_item} -
  • {foreach from=$address_words item=word_item name="word_loop"}{if !$smarty.foreach.word_loop.first} {/if}{$deliveryAddressFormatedValues[$word_item]|escape:'htmlall':'UTF-8'}{/foreach}
  • +
  • {foreach from=$address_words item=word_item name="word_loop"}{if !$smarty.foreach.word_loop.first} {/if}{$deliveryAddressFormatedValues[$word_item|replace:',':'']|escape:'htmlall':'UTF-8'}{/foreach}
  • {/if} {/foreach}