Skip to content

Commit

Permalink
Fix XSS in account_prof_edit_page.php
Browse files Browse the repository at this point in the history
Fixes #27853
  • Loading branch information
atrol committed Jan 8, 2021
1 parent 2eb6614 commit e512b3d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion account_prof_edit_page.php
Expand Up @@ -96,7 +96,7 @@
<?php echo form_security_field( 'account_prof_update' )?>
<input type="hidden" name="action" value="update" />
<input type="hidden" name="profile_id" value="<?php echo $v_id ?>" />
<input type="hidden" name="redirect" value="<?php echo $f_redirect_page ?>" />
<input type="hidden" name="redirect" value="<?php echo string_attribute( $f_redirect_page ) ?>" />

<div class="widget-box widget-color-blue2">

Expand Down

0 comments on commit e512b3d

Please sign in to comment.