From: Thomas Mueller Date: Fri, 14 Jun 2013 18:04:20 +0000 (+0200) Subject: remove » and « from the text mail because they will be escaped X-Git-Tag: v6.0.0alpha2~626^2 X-Git-Url: https://source.dussan.org/?a=commitdiff_plain;h=f3d33a7d5bd98c9c0da62097e643e95f0b4b923d;p=nextcloud-server.git remove » and « from the text mail because they will be escaped --- diff --git a/core/templates/altmail.php b/core/templates/altmail.php index c1d56c4b1a9..37dc8eee942 100644 --- a/core/templates/altmail.php +++ b/core/templates/altmail.php @@ -1,5 +1,5 @@ t("Hey there,\n\njust letting you know that %s shared »%s« with you.\nView it: %s\n\nCheers!", array($_['user_displayname'], $_['filename'], $_['link']))); +print_unescaped($l->t("Hey there,\n\njust letting you know that %s shared %s with you.\nView it: %s\n\nCheers!", array($_['user_displayname'], $_['filename'], $_['link']))); ?> --