From 3c3f50eaf0a637f8ccf26c7bb173015a89842998 Mon Sep 17 00:00:00 2001
From: mMarinetti
Date: Fri, 3 Feb 2012 15:37:40 +0000
Subject: [PATCH] // fixed #PSTEST-648 #PSTEST-645 #PSTEST-652 , htmlentities
git-svn-id: http://dev.prestashop.com/svn/v1/branches/1.5.x@12990 b9a71923-0436-4b27-9f14-aed3839534dd
---
.../themes/default/template/helper/form/form.tpl | 16 ++++++++--------
1 file changed, 8 insertions(+), 8 deletions(-)
diff --git a/admin-dev/themes/default/template/helper/form/form.tpl b/admin-dev/themes/default/template/helper/form/form.tpl
index afa8e9f93..abba10d96 100644
--- a/admin-dev/themes/default/template/helper/form/form.tpl
+++ b/admin-dev/themes/default/template/helper/form/form.tpl
@@ -40,7 +40,7 @@
{block name="leadin"}{/block}
{/if}
-{if isset($fields.title)}{$fields.title|escape:'htmlall'}
{/if}
+{if isset($fields.title)}{$fields.title}
{/if}
{block name="defaultForm"}
{/if}
@@ -352,14 +352,14 @@
{if is_array($field)}
{foreach $field as $k => $p}
{if is_array($p)}
- {$p.text|escape:'htmlall'}
+ {$p.text}
{else}
{$p}
{if isset($field[$k+1])}
{/if}
{/if}
{/foreach}
{else}
- {$field|escape:'htmlall'}
+ {$field}
{/if}
{/if}