summaryrefslogtreecommitdiffstats
path: root/core/templates
diff options
context:
space:
mode:
authorJoas Schilling <nickvergessen@gmx.de>2014-09-04 11:30:54 +0200
committerJoas Schilling <nickvergessen@gmx.de>2014-09-04 11:30:54 +0200
commit7a7e1023903e27d68b1a4643baf3d7031bcc2dfa (patch)
tree84817da4085f3b3812b2c83a0cbf54ac04891402 /core/templates
parenta0e8e88bc667a8617001a1dba6956d5846be7171 (diff)
downloadnextcloud-server-7a7e1023903e27d68b1a4643baf3d7031bcc2dfa.tar.gz
nextcloud-server-7a7e1023903e27d68b1a4643baf3d7031bcc2dfa.zip
Fix broken new lines in plain text mail template
Diffstat (limited to 'core/templates')
-rw-r--r--core/templates/altmail.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/core/templates/altmail.php b/core/templates/altmail.php
index b2b45e454a7..38531d109b7 100644
--- a/core/templates/altmail.php
+++ b/core/templates/altmail.php
@@ -2,7 +2,7 @@
print_unescaped($l->t("Hey there,\n\njust letting you know that %s shared %s with you.\nView it: %s\n\n", array($_['user_displayname'], $_['filename'], $_['link'])));
if ( isset($_['expiration']) ) {
print_unescaped($l->t("The share will expire on %s.", array($_['expiration'])));
- print_unescaped('\n\n');
+ print_unescaped("\n\n");
}
// TRANSLATORS term at the end of a mail
p($l->t("Cheers!"));