]> source.dussan.org Git - nextcloud-server.git/commitdiff
Fix broken new lines in plain text mail template
authorJoas Schilling <nickvergessen@gmx.de>
Thu, 4 Sep 2014 09:30:54 +0000 (11:30 +0200)
committerJoas Schilling <nickvergessen@gmx.de>
Thu, 4 Sep 2014 09:30:54 +0000 (11:30 +0200)
core/templates/altmail.php

index b2b45e454a78a573d044066ca924b930725570e1..38531d109b7c702585fe51cdcfbd12c0da657192 100644 (file)
@@ -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!"));