From 91cbfeeaebe50f42c21f2475d1000e6d9b0a15bf Mon Sep 17 00:00:00 2001 From: Fraenkiman Date: Mon, 27 Feb 2023 23:01:17 +0100 Subject: [PATCH] Update plugin.commentcenter.php little correction --- fp-plugins/commentcenter/plugin.commentcenter.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/fp-plugins/commentcenter/plugin.commentcenter.php b/fp-plugins/commentcenter/plugin.commentcenter.php index 9813990..966d4b1 100644 --- a/fp-plugins/commentcenter/plugin.commentcenter.php +++ b/fp-plugins/commentcenter/plugin.commentcenter.php @@ -439,7 +439,7 @@ class plugin_commentcenter { ), $text); // for non-ASCII characters in the e-mail header use RFC 1342 — Encodes data with MIME base64 - return @utils_mail($from_mail, "=?utf-8?B?" . base64_encode($subject) . "?=", $text); + return @utils_mail($from_mail, '=?utf-8?B?' . base64_encode($subject) . '?=', $text); } }