From 4ab430871dd4e1fad29ff8f139c0d5d690588657 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
---
.../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}