From 40461eb7382d3db9433e73e7843120fc7c42ca06 Mon Sep 17 00:00:00 2001 From: Lukas Fleischer Date: Fri, 22 May 2015 22:32:43 +0200 Subject: Include user name in password reset emails Fixes FS#44320. Signed-off-by: Lukas Fleischer --- web/html/passreset.php | 10 ++++++---- 1 file changed, 6 insertions(+), 4 deletions(-) (limited to 'web/html') diff --git a/web/html/passreset.php b/web/html/passreset.php index fca3d10..29f2c64 100644 --- a/web/html/passreset.php +++ b/web/html/passreset.php @@ -41,15 +41,17 @@ if (isset($_GET['resetkey'], $_POST['email'], $_POST['password'], $_POST['confir } } elseif (isset($_POST['email'])) { $email = $_POST['email']; + $username = username_from_id(uid_from_email($email)); if (empty($email)) { $error = __('Missing a required field.'); } else { $subject = 'AUR Password Reset'; - $body = __('A password reset request was submitted for the account '. - 'associated with your e-mail address. If you wish to reset '. - 'your password follow the link below, otherwise ignore '. - 'this message and nothing will happen.'); + $body = __('A password reset request was submitted for the ' . + 'account %s associated with your e-mail address. ' . + 'If you wish to reset your password follow the ' . + 'link below, otherwise ignore this message and ' . + 'nothing will happen.', $username); send_resetkey($email, $subject, $body); header('Location: ' . get_uri('/passreset/') . '?step=confirm'); -- cgit v1.2.3-54-g00ecf