From: Tim Düsterhus Date: Mon, 10 May 2021 10:25:38 +0000 (+0200) Subject: Fix breaking of words in email subject X-Git-Tag: 5.4.0_Alpha_2~25 X-Git-Url: https://git.stricted.de/?p=GitHub%2FWoltLab%2FWCF.git;a=commitdiff_plain;h=20536a7faba4d16afe32fb6748f23abe01ca7194 Fix breaking of words in email subject Apparently I forgot to `git add` this change. Fixes 39ad16436abd190e175dc9599080c6f64c24d02b. --- 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,