From 20536a7faba4d16afe32fb6748f23abe01ca7194 Mon Sep 17 00:00:00 2001 From: =?utf8?q?Tim=20D=C3=BCsterhus?= Date: Mon, 10 May 2021 12:25:38 +0200 Subject: [PATCH] Fix breaking of words in email subject Apparently I forgot to `git add` this change. Fixes 39ad16436abd190e175dc9599080c6f64c24d02b. --- .../system/background/job/EmailDeliveryBackgroundJob.class.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/wcfsetup/install/files/lib/system/background/job/EmailDeliveryBackgroundJob.class.php b/wcfsetup/install/files/lib/system/background/job/EmailDeliveryBackgroundJob.class.php index 942a6b7a53..33656b3528 100644 --- a/wcfsetup/install/files/lib/system/background/job/EmailDeliveryBackgroundJob.class.php +++ b/wcfsetup/install/files/lib/system/background/job/EmailDeliveryBackgroundJob.class.php @@ -91,7 +91,7 @@ class EmailDeliveryBackgroundJob extends AbstractBackgroundJob $this->email->getSubject(), 20, StringUtil::HELLIP, - false + true ), 'recipient' => $this->envelopeTo->getAddress(), 'recipientID' => ($this->envelopeTo instanceof UserMailbox) ? $this->envelopeTo->getUser()->userID : null, -- 2.20.1