From 2753a4cab5642f821b1b0a88a50b5a568aa6ec11 Mon Sep 17 00:00:00 2001 From: alecpl <alec@alec.pl> Date: Sat, 25 Sep 2010 09:28:37 -0400 Subject: [PATCH] - Fix r3962 (< and > characters were not replaced with HTML entities in plain messages) --- program/steps/mail/func.inc | 2 +- 1 files changed, 1 insertions(+), 1 deletions(-) diff --git a/program/steps/mail/func.inc b/program/steps/mail/func.inc index b191072..119a5da 100644 --- a/program/steps/mail/func.inc +++ b/program/steps/mail/func.inc @@ -844,7 +844,7 @@ } // quote plain text - $body = Q(join("\n", $a_lines), '', false); + $body = Q(join("\n", $a_lines), 'dummy', false); // colorize signature $len = strlen($body); -- Gitblit v1.9.1