Skip to content

Commit

Permalink
validator fix
Browse files Browse the repository at this point in the history
  • Loading branch information
margud committed Aug 9, 2022
1 parent ac864ca commit ca7d6df
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion views/templates/admin/updateMessage.tpl
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
*}
<div>
<span>
{$updateMessage}
{$updateMessage} {*need to display add full html so we can't escape it*}
</span>
</div>

4 changes: 2 additions & 2 deletions views/templates/hook/admin/order-list-icon.tpl
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
* @license https://github.com/mollie/PrestaShop/blob/master/LICENSE.md
*}

<div class="mollie-icon-container" data-id-order="{$idOrder|intval}">
<img class="resend-payment-mail-mollie" src="{$orderListIcon}" width="26" height="26" data-id-order="{$idOrder|escape:'htmlall':'UTF-8'}"/>
<div class="mollie-icon-container" data-id-order="{$idOrder|escape:'htmlall':'UTF-8'}">
<img class="resend-payment-mail-mollie" src="{$orderListIcon|escape:'htmlall':'UTF-8'}" width="26" height="26" data-id-order="{$idOrder|escape:'htmlall':'UTF-8'}"/>
<div class="mollie-message-container">{$message|escape:'html':'UTF-8'}</div>
</div>

0 comments on commit ca7d6df

Please sign in to comment.