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 $form_id} @@ -52,7 +52,7 @@ {if $key == 'legend'} {if isset($field.image)}{$field.title|escape:'htmlall'}{/if} - {$field.title|escape:'htmlall'} + {$field.title} {elseif $key == 'description'}

{$field}

@@ -210,11 +210,11 @@ {$value.label} {/if} {else} - {$value.label|escape:'htmlall'} + {$value.label} {/if} {if isset($input.br) && $input.br}
{/if} - {if isset($value.p) && $value.p}

{$value.p|escape:'htmlall'}

{/if} + {if isset($value.p) && $value.p}

{$value.p}

{/if} {/foreach} {elseif $input.type == 'textarea'} {if isset($input.lang)} @@ -322,13 +322,13 @@ {if is_array($input.desc)} {foreach $input.desc as $p} {if is_array($p)} - {$p.text|escape:'htmlall'}
+ {$p.text}
{else} {$p}
{/if} {/foreach} {else} - {$input.desc|escape:'htmlall'} + {$input.desc} {/if}

{/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}