Skip to content
Permalink
Browse files Browse the repository at this point in the history
Use GET instead of QUERY_STRING
  • Loading branch information
LukasReschke committed Jan 19, 2013
1 parent f71f0ad commit 4e2b834
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion core/lostpassword/templates/resetpassword.php
@@ -1,4 +1,4 @@
<form action="<?php echo 'resetpassword.php?'.$_SERVER['QUERY_STRING']; ?>" method="post">
<form action="<?php echo 'resetpassword.php?user='.htmlentities($_GET['user']).'&token='.htmlentities($_GET['token']); ?>" method="post">
<fieldset>
<?php if($_['success']): ?>
<h1><?php echo $l->t('Your password was reset'); ?></h1>
Expand Down

0 comments on commit 4e2b834

Please sign in to comment.