Skip to content
Snippets Groups Projects
Commit c54d67aa authored by Ievgen Sentiabov's avatar Ievgen Sentiabov
Browse files

MAGETWO-44588: Shipping address is displayed with html tags on express Order Review Page

 - Added `br` tags to escaper excluded tags list for shipping address rendering
parent 02e0378c
No related merge requests found
......@@ -84,7 +84,10 @@
</strong>
<div class="box-content">
<address>
<?php echo $block->escapeHtml($block->renderAddress($block->getShippingAddress())); ?>
<?php echo $block->escapeHtml(
$block->renderAddress($block->getShippingAddress()),
['br']
); ?>
</address>
</div>
<?php if ($block->getCanEditShippingAddress()): ?>
......
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment