Adding "ESCAPE=HTML" to hidden input template variables in order to address bug 1919, "Form contents not escaped on login page"
Signed-off-by: Joshua Ferraro <jmf@liblime.com>
This commit is contained in:
parent
1ce7cd7cbe
commit
c55599974d
1 changed files with 1 additions and 1 deletions
|
@ -38,7 +38,7 @@
|
|||
<!-- login prompt time-->
|
||||
<form action="<!-- TMPL_VAR NAME="url" -->" method="post" name="loginform" id="loginform">
|
||||
<!-- TMPL_LOOP NAME="INPUTS" -->
|
||||
<input type="hidden" name="<!-- TMPL_VAR NAME="name" -->" value="<!-- TMPL_VAR NAME="value" -->" />
|
||||
<input type="hidden" name="<!-- TMPL_VAR NAME="name" -->" value="<!-- TMPL_VAR NAME="value" ESCAPE="html" -->" />
|
||||
<!-- /TMPL_LOOP -->
|
||||
<p><label>Username:<br />
|
||||
<input type="text" name="userid" id="userid" class="input focus" value="<!-- TMPL_VAR NAME="userid" -->" size="20" tabindex="1" /></label>
|
||||
|
|
Loading…
Reference in a new issue