Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/nextcloud/server.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRoeland Jago Douma <rullzer@users.noreply.github.com>2019-01-13 22:47:01 +0300
committerGitHub <noreply@github.com>2019-01-13 22:47:01 +0300
commit71e26d12c0f82ebf4046a9265e2594b469be9e7b (patch)
tree338378848d598f95aac27263cbe30ef4e49dfed5
parent8440e5edba07d643352775b7c02bd4c89c72526a (diff)
parent53ce4a049b49f00dcc4dd9253cebaed5746fc4e0 (diff)
Merge pull request #12490 from nextcloud/improve-mail-subject
improve mail subject for mails to the owner with the password
-rw-r--r--apps/sharebymail/lib/ShareByMailProvider.php2
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);