From d6172529561764f6ef2056d357a29dd00ebf3b2b Mon Sep 17 00:00:00 2001 From: Fraenkiman Date: Mon, 27 Feb 2023 23:07:58 +0100 Subject: [PATCH] Update contact.php little correction --- contact.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/contact.php b/contact.php index 1729015..bca5124 100755 --- a/contact.php +++ b/contact.php @@ -112,7 +112,7 @@ function contact_form() { // send notification mail to site admin // for non-ASCII characters in the e-mail header use RFC 1342 — Encodes data with MIME base64 and splits the encrypted subject - $success = @utils_mail((isset($validationResult ['email']) ? $validationResult ['email'] : $fp_config ['general'] ['email']), "=?utf-8?B?" . base64_encode($lang ['contact'] ['notification'] ['subject']) . "=?= =?utf-8?B?" . base64_encode($fp_config ['general'] ['title']) . "==?=", $msg); + $success = @utils_mail((isset($validationResult ['email']) ? $validationResult ['email'] : $fp_config ['general'] ['email']), '=?utf-8?B?' . base64_encode($lang ['contact'] ['notification'] ['subject']) . '=?= =?utf-8?B?' . base64_encode($fp_config ['general'] ['title']) . '==?=', $msg); system_seterr('contact', $success ? 1 : -1); utils_redirect(basename(__FILE__)); }