Fix breaking of words in email subject
authorTim Düsterhus <duesterhus@woltlab.com>
Mon, 10 May 2021 10:25:38 +0000 (12:25 +0200)
committerTim Düsterhus <duesterhus@woltlab.com>
Mon, 10 May 2021 10:25:38 +0000 (12:25 +0200)
Apparently I forgot to `git add` this change.

Fixes 39ad16436abd190e175dc9599080c6f64c24d02b.

wcfsetup/install/files/lib/system/background/job/EmailDeliveryBackgroundJob.class.php

index 942a6b7a532b39a17a3558608673be1939862c76..33656b3528ab65f72317236733ecfc749a6d13e0 100644 (file)
@@ -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,