From 0ffa12a201b479efc6a5b91d8564175e0a12e6f0 Mon Sep 17 00:00:00 2001 From: Alex <40072887+alexdcrane@users.noreply.github.com> Date: Tue, 23 Dec 2025 11:13:49 -0700 Subject: [PATCH] Fix password reset email domain name (#7676) $domain_name is undefined since it was replaced with $password_reset_domain --- resources/login.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/resources/login.php b/resources/login.php index 3c2d1e3af7..4d665ddbc2 100644 --- a/resources/login.php +++ b/resources/login.php @@ -143,7 +143,7 @@ $email_body = str_replace('${reset_button}', $reset_button, $email_body); $email_body = str_replace('${logo_full}', $logo_full, $email_body); $email_body = str_replace('${logo_shield}', $logo_shield, $email_body); - $email_body = str_replace('${domain}', $domain_name, $email_body); + $email_body = str_replace('${domain}', $password_reset_domain, $email_body); //send reset link if (send_email($email, $email_subject, $email_body, $eml_error)) {