Removing php escape and completing template ones.
This commit is contained in:
parent
318d409464
commit
2af04c3b1a
@ -190,7 +190,7 @@ class Utils {
|
|||||||
}
|
}
|
||||||
|
|
||||||
public static function fromPostOrDefault($postKey, $default = '') {
|
public static function fromPostOrDefault($postKey, $default = '') {
|
||||||
return !empty($_POST[$postKey]) ? Utils::htmlEscape($_POST[$postKey]) : $default;
|
return !empty($_POST[$postKey]) ? $_POST[$postKey] : $default;
|
||||||
}
|
}
|
||||||
|
|
||||||
public static function base64url_encode($input) {
|
public static function base64url_encode($input) {
|
||||||
|
@ -42,7 +42,7 @@
|
|||||||
<input id="customize_id" name="customize_id" type="checkbox"/>
|
<input id="customize_id" name="customize_id" type="checkbox"/>
|
||||||
</span>
|
</span>
|
||||||
<input id="poll_id" type="text" name="id" class="form-control" {$errors['id']['aria']}
|
<input id="poll_id" type="text" name="id" class="form-control" {$errors['id']['aria']}
|
||||||
value="{$poll_id}" aria-describedBy="pollIdDesc" disabled="disabled" maxlength="64"
|
value="{$poll_id|html}" aria-describedBy="pollIdDesc" disabled="disabled" maxlength="64"
|
||||||
pattern="[A-Za-z0-9-]+"/>
|
pattern="[A-Za-z0-9-]+"/>
|
||||||
</div>
|
</div>
|
||||||
<span id="pollIdDesc" class="help-block">{__('Step 1', 'Poll id rules')}</span>
|
<span id="pollIdDesc" class="help-block">{__('Step 1', 'Poll id rules')}</span>
|
||||||
@ -104,7 +104,7 @@
|
|||||||
{if $useRemoteUser}
|
{if $useRemoteUser}
|
||||||
<input type="hidden" name="mail" value="{$form->admin_mail}">{$form->admin_mail}
|
<input type="hidden" name="mail" value="{$form->admin_mail}">{$form->admin_mail}
|
||||||
{else}
|
{else}
|
||||||
<input id="email" type="text" name="mail" class="form-control" {$errors['email']['aria']} value="{$poll_mail}" />
|
<input id="email" type="text" name="mail" class="form-control" {$errors['email']['aria']} value="{$poll_mail|html}" />
|
||||||
{/if}
|
{/if}
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
|
Loading…
Reference in New Issue
Block a user