浏览代码

Fix broken new lines in plain text mail template

tags/v8.0.0alpha1
Joas Schilling 9 年前
父节点
当前提交
7a7e102390
共有 1 个文件被更改,包括 1 次插入1 次删除
  1. 1
    1
      core/templates/altmail.php

+ 1
- 1
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!"));

正在加载...
取消
保存