diff options
author | Joas Schilling <coding@schilljs.com> | 2018-02-15 12:18:51 +0100 |
---|---|---|
committer | Joas Schilling <coding@schilljs.com> | 2018-02-15 12:18:51 +0100 |
commit | 339e32006479daf9e11152c386c34e6b2d757cf2 (patch) | |
tree | c7bb185e0e03d3a6766c18fc7ce56f14c8a5b71f /apps/sharebymail/lib | |
parent | 350e38396f5c90894fb539d35f7815af93f01570 (diff) | |
download | nextcloud-server-339e32006479daf9e11152c386c34e6b2d757cf2.tar.gz nextcloud-server-339e32006479daf9e11152c386c34e6b2d757cf2.zip |
Fix existing usages
Signed-off-by: Joas Schilling <coding@schilljs.com>
Diffstat (limited to 'apps/sharebymail/lib')
-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 |