Skip to content

Commit

Permalink
escaping a form field value.
Browse files Browse the repository at this point in the history
  • Loading branch information
Jedi Knight committed Jul 11, 2016
1 parent 5b3351f commit 24932ca
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion software-license-manager/menu/slm-manage-licenses.php
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ function wp_lic_mgr_manage_licenses_menu() {
?>
<form id="tables-filter" method="get" onSubmit="return confirm('Are you sure you want to perform this bulk operation on the selected entries?');">
<!-- For plugins, we also need to ensure that the form posts back to our current page -->
<input type="hidden" name="page" value="<?php echo $_REQUEST['page']; ?>" />
<input type="hidden" name="page" value="<?php echo esc_attr($_REQUEST['page']); ?>" />
<!-- Now we can render the completed list table -->
<?php $license_list->display(); ?>
</form>
Expand Down

0 comments on commit 24932ca

Please sign in to comment.