From 4572d3f43d5a1353f07c08f9c6d37ff828477d30 Mon Sep 17 00:00:00 2001 From: the-djmaze <> Date: Mon, 9 Jan 2023 21:21:59 +0100 Subject: [PATCH] Bugfix: undefined $sValue --- snappymail/v/0.0.0/app/libraries/MailSo/Mime/Header.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/snappymail/v/0.0.0/app/libraries/MailSo/Mime/Header.php b/snappymail/v/0.0.0/app/libraries/MailSo/Mime/Header.php index 8681b266a..985e71905 100644 --- a/snappymail/v/0.0.0/app/libraries/MailSo/Mime/Header.php +++ b/snappymail/v/0.0.0/app/libraries/MailSo/Mime/Header.php @@ -157,7 +157,7 @@ class Header } // https://www.rfc-editor.org/rfc/rfc2822#section-2.1.1 - return \wordwrap($this->NameWithDelimitrom() . $sValue, 78, "\r\n "); + return \wordwrap($this->NameWithDelimitrom() . $sResult, 78, "\r\n "); } public function IsSubject() : bool