summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorThomas Mueller <thomas.mueller@tmit.eu>2013-06-14 20:04:20 +0200
committerThomas Mueller <thomas.mueller@tmit.eu>2013-06-14 20:04:20 +0200
commitf3d33a7d5bd98c9c0da62097e643e95f0b4b923d (patch)
treea44b44c2dee5f3f220015d13b7c67bcb5b5621d5
parentff64278a07918a21c4cdb1a290c537084855a28c (diff)
downloadnextcloud-server-f3d33a7d5bd98c9c0da62097e643e95f0b4b923d.tar.gz
nextcloud-server-f3d33a7d5bd98c9c0da62097e643e95f0b4b923d.zip
remove » and « from the text mail because they will be escaped
-rw-r--r--core/templates/altmail.php2
1 files changed, 1 insertions, 1 deletions
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 @@
<?php
-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'])));
+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'])));
?>
--