remove » and « from the text mail because they will be escaped

This commit is contained in:
Thomas Mueller 2013-06-14 20:04:20 +02:00
parent ff64278a07
commit f3d33a7d5b
1 changed files with 1 additions and 1 deletions

View 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'])));
?>
--