diff options
author | Joas Schilling <nickvergessen@gmx.de> | 2014-09-04 11:30:54 +0200 |
---|---|---|
committer | Victor Dubiniuk <victor.dubiniuk@gmail.com> | 2014-09-09 23:40:56 +0300 |
commit | 19dd866c7ee3c6a54d71cdee7a86012390f1b179 (patch) | |
tree | cb1aacd736dbc6f9c61fd264c844e69e365dd273 /core/templates | |
parent | 8e89c51e8744ecbfc5e2afe59f030c5b5dce62a6 (diff) | |
download | nextcloud-server-19dd866c7ee3c6a54d71cdee7a86012390f1b179.tar.gz nextcloud-server-19dd866c7ee3c6a54d71cdee7a86012390f1b179.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 7776919ea34..da00f54a649 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"); } p($l->t("Cheers!")); ?> |