Skip to content
This repository was archived by the owner on Sep 19, 2022. It is now read-only.

Commit 2581915

Browse files
authored
fix: htmlspecialchars in AUP template
1 parent de24343 commit 2581915

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

templates/force-aup-tpl.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@
3131
}
3232
?>
3333

34-
<input type="hidden" name="StateId" value="<?php echo $_REQUEST['StateId']; ?>">
34+
<input type="hidden" name="StateId" value="<?php echo htmlspecialchars($_REQUEST['StateId']); ?>">
3535

3636
<div class="form-group">
3737
<button type="submit" class="btn btn-lg btn-primary btn-block">

0 commit comments

Comments
 (0)