Skip to content

Commit

Permalink
SW-19165 - Fix missing zipcode for shipping adresses
Browse files Browse the repository at this point in the history
  • Loading branch information
mnaczenski authored and jenskueper committed Jun 29, 2017
1 parent c24a6e0 commit e57b71f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion themes/Frontend/Bare/frontend/checkout/finish.tpl
Original file line number Diff line number Diff line change
Expand Up @@ -238,7 +238,7 @@
{if $sAddresses.shipping.additional_address_line1}<span class="address--additional-one">{$sAddresses.shipping.additional_address_line1|escapeHtml}</span><br />{/if}
{if $sAddresses.shipping.additional_address_line2}<span class="address--additional-two">{$sAddresses.shipping.additional_address_line2|escapeHtml}</span><br />{/if}
{if {config name=showZipBeforeCity}}
<span class="address--zipcode">{$sAddresses.shipping.zipcod|escapeHtml}</span> <span class="address--city">{$sAddresses.shipping.city|escapeHtml}</span>
<span class="address--zipcode">{$sAddresses.shipping.zipcode|escapeHtml}</span> <span class="address--city">{$sAddresses.shipping.city|escapeHtml}</span>
{else}
<span class="address--city">{$sAddresses.shipping.city|escapeHtml}</span> <span class="address--zipcode">{$sAddresses.shipping.zipcode|escapeHtml}</span>
{/if}<br />
Expand Down

0 comments on commit e57b71f

Please sign in to comment.