diff options
author | Joas Schilling <nickvergessen@gmx.de> | 2014-09-04 11:30:54 +0200 |
---|---|---|
committer | Joas Schilling <nickvergessen@gmx.de> | 2014-09-04 11:30:54 +0200 |
commit | 7a7e1023903e27d68b1a4643baf3d7031bcc2dfa (patch) | |
tree | 84817da4085f3b3812b2c83a0cbf54ac04891402 /core/templates | |
parent | a0e8e88bc667a8617001a1dba6956d5846be7171 (diff) | |
download | nextcloud-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.php | 2 |
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!")); |