Escape values to input fields (and some 'title' and 'alt')
This commit is contained in:
parent
e051da8203
commit
9d3fb417c2
64 changed files with 209 additions and 186 deletions
|
@ -10,17 +10,17 @@
|
|||
|
||||
<form id="install-form" action="{{$baseurl}}/install" method="post">
|
||||
|
||||
<input type="hidden" name="phpath" value="{{$phpath}}" />
|
||||
<input type="hidden" name="dbhost" value="{{$dbhost}}" />
|
||||
<input type="hidden" name="dbuser" value="{{$dbuser}}" />
|
||||
<input type="hidden" name="dbpass" value="{{$dbpass}}" />
|
||||
<input type="hidden" name="dbdata" value="{{$dbdata}}" />
|
||||
<input type="hidden" name="phpath" value="{{$phpath|escape:'html'}}" />
|
||||
<input type="hidden" name="dbhost" value="{{$dbhost|escape:'html'}}" />
|
||||
<input type="hidden" name="dbuser" value="{{$dbuser|escape:'html'}}" />
|
||||
<input type="hidden" name="dbpass" value="{{$dbpass|escape:'html'}}" />
|
||||
<input type="hidden" name="dbdata" value="{{$dbdata|escape:'html'}}" />
|
||||
<input type="hidden" name="pass" value="4" />
|
||||
|
||||
{{include file="field_input.tpl" field=$adminmail}}
|
||||
{{$timezone}}
|
||||
|
||||
<input id="install-submit" type="submit" name="submit" value="{{$submit}}" />
|
||||
<input id="install-submit" type="submit" name="submit" value="{{$submit|escape:'html'}}" />
|
||||
|
||||
</form>
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue