summaryrefslogtreecommitdiff
path: root/roundcubemail/program/steps/mail/func.inc
diff options
context:
space:
mode:
authoralec <alec@208e9e7b-5314-0410-a742-e7e81cd9613c>2010-09-25 13:28:37 +0000
committeralec <alec@208e9e7b-5314-0410-a742-e7e81cd9613c>2010-09-25 13:28:37 +0000
commit4095c1544a3ba233d11f87231db1f0a080cac489 (patch)
tree45b1ab84d19aab2316b71830b125f4507d487aed /roundcubemail/program/steps/mail/func.inc
parent319507d0863509209a7a252a20368110d48319b0 (diff)
- Fix r3962 (< and > characters were not replaced with HTML entities in plain messages)
git-svn-id: https://svn.roundcube.net/trunk@3990 208e9e7b-5314-0410-a742-e7e81cd9613c
Diffstat (limited to 'roundcubemail/program/steps/mail/func.inc')
-rw-r--r--roundcubemail/program/steps/mail/func.inc2
1 files changed, 1 insertions, 1 deletions
diff --git a/roundcubemail/program/steps/mail/func.inc b/roundcubemail/program/steps/mail/func.inc
index b191072e6..119a5da31 100644
--- a/roundcubemail/program/steps/mail/func.inc
+++ b/roundcubemail/program/steps/mail/func.inc
@@ -844,7 +844,7 @@ function rcmail_plain_body($body, $flowed=false)
}
// quote plain text
- $body = Q(join("\n", $a_lines), '', false);
+ $body = Q(join("\n", $a_lines), 'dummy', false);
// colorize signature
$len = strlen($body);