fix bad escaping of html entities
This commit is contained in:
parent
6b133960ed
commit
b9fedf7841
@ -32,7 +32,7 @@
|
||||
{toolbar}
|
||||
<p>
|
||||
<textarea name="content" {$error.content|notempty:'class="field-error"'}
|
||||
id="content" rows="20" cols="74">{$content|default:$smarty.request.content}</textarea><br />
|
||||
id="content" rows="20" cols="74">{$content|default:$smarty.request.content|htmlspecialchars}</textarea><br />
|
||||
{*here will go a plugin hook*}
|
||||
{action hook=simple_edit_form}
|
||||
|
||||
|
@ -30,7 +30,7 @@
|
||||
{toolbar}
|
||||
<p>
|
||||
<textarea name="content" {$error.content|notempty:'class="field-error"'} id="content"
|
||||
rows="20" cols="74">{$content|default:$smarty.request.content}</textarea><br />
|
||||
rows="20" cols="74">{$content|default:$smarty.request.content|htmlspecialchars}</textarea><br />
|
||||
{*here will go a plugin hook*}
|
||||
</p>
|
||||
|
||||
|
Loading…
x
Reference in New Issue
Block a user