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

Commit

Permalink
fix: htmlspecialchars in AUP template
Browse files Browse the repository at this point in the history
  • Loading branch information
melanger committed Sep 15, 2022
1 parent de24343 commit 2581915
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion templates/force-aup-tpl.php
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@
}
?>

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

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

0 comments on commit 2581915

Please # to comment.