diff --git a/admin-dev/themes/default/template/controllers/products/informations.tpl b/admin-dev/themes/default/template/controllers/products/informations.tpl
index 4df54dfba..d95bcf299 100644
--- a/admin-dev/themes/default/template/controllers/products/informations.tpl
+++ b/admin-dev/themes/default/template/controllers/products/informations.tpl
@@ -136,7 +136,7 @@
|
- {l s='(US, Canada)'}
+ {l s='(US, Canada)'}
|
diff --git a/admin-dev/themes/default/template/layout.tpl b/admin-dev/themes/default/template/layout.tpl
index d4607ae5a..aafea338d 100644
--- a/admin-dev/themes/default/template/layout.tpl
+++ b/admin-dev/themes/default/template/layout.tpl
@@ -42,7 +42,7 @@
{foreach $errors as $error}
- - {$error}
+ - {$error|escape:html:'UTF-8'}
{/foreach}
{/if}
@@ -52,7 +52,7 @@
{if isset($informations) && count($informations) && $informations}
{foreach $informations as $info}
- {$info}
+ {$info|escape:html:'UTF-8'}
{/foreach}
{/if}
@@ -60,7 +60,7 @@
{if isset($confirmations) && count($confirmations) && $confirmations}
{foreach $confirmations as $conf}
- {$conf}
+ {$conf|escape:html:'UTF-8'}
{/foreach}
{/if}
@@ -78,13 +78,13 @@
1}style="display:none;"{/if} id="seeMore">
{foreach $warnings as $warning}
- - {$warning}
+ - {$warning|escape:html:'UTF-8'}
{/foreach}
{else}
{foreach $warnings as $warning}
- - {$warning}
+ - {$warning|escape:html:'UTF-8'}
{/foreach}
{/if}
diff --git a/modules/blockcategories/blockcategories.php b/modules/blockcategories/blockcategories.php
index 3f1842ae1..31f4b544e 100644
--- a/modules/blockcategories/blockcategories.php
+++ b/modules/blockcategories/blockcategories.php
@@ -103,7 +103,7 @@ class BlockCategories extends Module
@@ -129,7 +129,7 @@ class BlockCategories extends Module
diff --git a/modules/blockcontact/blockcontact.tpl b/modules/blockcontact/blockcontact.tpl
index b27c7c977..93003150a 100644
--- a/modules/blockcontact/blockcontact.tpl
+++ b/modules/blockcontact/blockcontact.tpl
@@ -28,7 +28,7 @@
{l s='Our hotline is available 24/7' mod='blockcontact'}
- {if $telnumber != ''}
{l s='Phone:' mod='blockcontact'}{$telnumber}
{/if}
- {if $email != ''}
{l s='Contact our hotline' mod='blockcontact'}{/if}
+ {if $telnumber != ''}
{l s='Phone:' mod='blockcontact'}{$telnumber|escape:'htmlall':'UTF-8'}
{/if}
+ {if $email != ''}
{l s='Contact our hotline' mod='blockcontact'}{/if}