]> source.dussan.org Git - nextcloud-server.git/commitdiff
remove » and « from the text mail because they will be escaped
authorThomas Mueller <thomas.mueller@tmit.eu>
Fri, 14 Jun 2013 18:04:20 +0000 (20:04 +0200)
committerThomas Mueller <thomas.mueller@tmit.eu>
Fri, 14 Jun 2013 18:04:20 +0000 (20:04 +0200)
core/templates/altmail.php

index c1d56c4b1a907cbf4101d4c458efc0315a726a4c..37dc8eee94266bd99c178161484b7056a9c525d8 100644 (file)
@@ -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'])));
 ?>
 
 --