diff options
author | Bjoern Schiessle <bjoern@schiessle.org> | 2018-11-16 15:51:55 +0100 |
---|---|---|
committer | Roeland Jago Douma <roeland@famdouma.nl> | 2019-01-13 20:01:51 +0100 |
commit | 53ce4a049b49f00dcc4dd9253cebaed5746fc4e0 (patch) | |
tree | be1d6707b4ba40f920737ded0777fe521e44f494 /apps/sharebymail | |
parent | 54093e2bd6af535e4a70f986f83398b852d49174 (diff) | |
download | nextcloud-server-53ce4a049b49f00dcc4dd9253cebaed5746fc4e0.tar.gz nextcloud-server-53ce4a049b49f00dcc4dd9253cebaed5746fc4e0.zip |
improve mail subject for mails to the owner with the password
Signed-off-by: Bjoern Schiessle <bjoern@schiessle.org>
Diffstat (limited to 'apps/sharebymail')
-rw-r--r-- | apps/sharebymail/lib/ShareByMailProvider.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/apps/sharebymail/lib/ShareByMailProvider.php b/apps/sharebymail/lib/ShareByMailProvider.php index c74c5eb1a7f..e255adfd3f6 100644 --- a/apps/sharebymail/lib/ShareByMailProvider.php +++ b/apps/sharebymail/lib/ShareByMailProvider.php @@ -599,7 +599,7 @@ class ShareByMailProvider implements IShareProvider { 'shareWith' => $shareWith, ]); - $emailTemplate->setSubject($this->l->t('Password to access »%1$s« shared with %2$s', [$filename, $shareWith])); + $emailTemplate->setSubject($this->l->t('Password to access »%1$s« shared by you with %2$s', [$filename, $shareWith])); $emailTemplate->addHeader(); $emailTemplate->addHeading($this->l->t('Password to access »%s«', [$filename]), false); $emailTemplate->addBodyText($bodyPart); |