diff options
author | Joas Schilling <coding@schilljs.com> | 2018-02-26 13:38:39 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2018-02-26 13:38:39 +0100 |
commit | 226e63695f37d54f673fe563ca183ea3cc9b8c7a (patch) | |
tree | 9336aec1c4a2b78686606da480d0d818c6869b57 /apps/sharebymail | |
parent | 695e32d0a66c6c5293291c3f31c5458fd5c248db (diff) | |
parent | a097ecded7e663d983571d272dfed07f890ba4f2 (diff) | |
download | nextcloud-server-226e63695f37d54f673fe563ca183ea3cc9b8c7a.tar.gz nextcloud-server-226e63695f37d54f673fe563ca183ea3cc9b8c7a.zip |
Merge pull request #8026 from nextcloud/feature/noid/allow-custom-html-in-html-emails
Allow custom HTML in HTML Emails
Diffstat (limited to 'apps/sharebymail')
-rw-r--r-- | apps/sharebymail/lib/ShareByMailProvider.php | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/apps/sharebymail/lib/ShareByMailProvider.php b/apps/sharebymail/lib/ShareByMailProvider.php index 31df8a18951..61c9c01e9ab 100644 --- a/apps/sharebymail/lib/ShareByMailProvider.php +++ b/apps/sharebymail/lib/ShareByMailProvider.php @@ -404,7 +404,7 @@ class ShareByMailProvider implements IShareProvider { $text = $this->l->t('%s shared »%s« with you.', [$initiatorDisplayName, $filename]); $emailTemplate->addBodyText( - $text . ' ' . $this->l->t('Click the button below to open it.'), + htmlspecialchars($text . ' ' . $this->l->t('Click the button below to open it.')), $text ); $emailTemplate->addBodyButton( @@ -476,7 +476,7 @@ class ShareByMailProvider implements IShareProvider { $emailTemplate->setSubject($this->l->t('Password to access »%s« shared to you by %s', [$filename, $initiatorDisplayName])); $emailTemplate->addHeader(); $emailTemplate->addHeading($this->l->t('Password to access »%s«', [$filename]), false); - $emailTemplate->addBodyText($htmlBodyPart, $plainBodyPart); + $emailTemplate->addBodyText(htmlspecialchars($htmlBodyPart), $plainBodyPart); $emailTemplate->addBodyText($this->l->t('It is protected with the following password: %s', [$password])); // The "From" contains the sharers name |