From cd47344ee24f90a4870616e442a76a256a56876c Mon Sep 17 00:00:00 2001 From: rxu Date: Sun, 2 Feb 2025 19:46:49 +0700 Subject: [PATCH] [ticket/17468] Send reset password link to email only PHPBB-17468 --- phpBB/phpbb/ucp/controller/reset_password.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/phpBB/phpbb/ucp/controller/reset_password.php b/phpBB/phpbb/ucp/controller/reset_password.php index a451856065..59047c191a 100644 --- a/phpBB/phpbb/ucp/controller/reset_password.php +++ b/phpBB/phpbb/ucp/controller/reset_password.php @@ -272,7 +272,7 @@ class reset_password ], false) ]); - $messenger->send($user_row['user_notify_type']); + $messenger->send(NOTIFY_EMAIL); return $this->helper->message($message); }