diff options
author | Git'Fellow <12234510+solracsf@users.noreply.github.com> | 2024-12-10 09:39:00 +0100 |
---|---|---|
committer | John Molakvoæ <skjnldsv@users.noreply.github.com> | 2024-12-10 18:27:31 +0100 |
commit | f86fb0fee2b9742b5f15e25cb79baed9d407331a (patch) | |
tree | 912e2a7fbba4c7f64f1fdce94a74a4a0178aa53a /apps/sharebymail/lib | |
parent | 28ec9c7e80e825aea2537f865e2862aecf25c8f1 (diff) | |
download | nextcloud-server-f86fb0fee2b9742b5f15e25cb79baed9d407331a.tar.gz nextcloud-server-f86fb0fee2b9742b5f15e25cb79baed9d407331a.zip |
fix(share): Don't print twice the same informationprintOnlyOnceText
Signed-off-by: Git'Fellow <12234510+solracsf@users.noreply.github.com>
Diffstat (limited to 'apps/sharebymail/lib')
-rw-r--r-- | apps/sharebymail/lib/ShareByMailProvider.php | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/apps/sharebymail/lib/ShareByMailProvider.php b/apps/sharebymail/lib/ShareByMailProvider.php index 9efc0ec2513..a9e6add2359 100644 --- a/apps/sharebymail/lib/ShareByMailProvider.php +++ b/apps/sharebymail/lib/ShareByMailProvider.php @@ -333,7 +333,6 @@ class ShareByMailProvider extends DefaultShareProvider implements IShareProvider $emailTemplate->setSubject($this->l->t('%1$s shared %2$s with you', [$initiatorDisplayName, $filename])); $emailTemplate->addHeader(); $emailTemplate->addHeading($this->l->t('%1$s shared %2$s with you', [$initiatorDisplayName, $filename]), false); - $text = $this->l->t('%1$s shared %2$s with you.', [$initiatorDisplayName, $filename]); if ($note !== '') { $emailTemplate->addBodyListItem( @@ -354,8 +353,7 @@ class ShareByMailProvider extends DefaultShareProvider implements IShareProvider } $emailTemplate->addBodyText( - htmlspecialchars($text . ' ' . $this->l->t('Click the button below to open it.')), - $text + $this->l->t('Click the button below to open it.') ); $emailTemplate->addBodyButton( |