summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authoralecpl <alec@alec.pl>2010-09-25 13:28:37 +0000
committeralecpl <alec@alec.pl>2010-09-25 13:28:37 +0000
commit2753a4cab5642f821b1b0a88a50b5a568aa6ec11 (patch)
tree0a62a5de5d90ce8fd16b48135e0e9876746cad57
parente019f2d0f2dc2fbfa345ab5d7ae85e67bfdd76b8 (diff)
- Fix r3962 (< and > characters were not replaced with HTML entities in plain messages)
-rw-r--r--program/steps/mail/func.inc2
1 files changed, 1 insertions, 1 deletions
diff --git a/program/steps/mail/func.inc b/program/steps/mail/func.inc
index b191072e6..119a5da31 100644
--- a/program/steps/mail/func.inc
+++ b/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);