From 1a00f138c6d6903d7fc51dca4ef46dd675aec9fa Mon Sep 17 00:00:00 2001 From: alecpl Date: Mon, 12 Oct 2009 16:06:33 +0000 Subject: - Fix IE issue with non-UTF-8 characters in AJAX response (#1486159) --- program/steps/mail/headers.inc | 5 +++++ 1 file changed, 5 insertions(+) (limited to 'program/steps/mail/headers.inc') diff --git a/program/steps/mail/headers.inc b/program/steps/mail/headers.inc index 653fb9647..4e3f969bd 100644 --- a/program/steps/mail/headers.inc +++ b/program/steps/mail/headers.inc @@ -24,6 +24,11 @@ if ($uid = get_input_value('_uid', RCUBE_INPUT_POST)) if ($source) { + $browser = new rcube_browser; + + if ($browser->ie) + $source = rc_utf8_clean($source); + $source = htmlspecialchars(trim($source)); $source = preg_replace('/\t/', '    ', $source); $source = preg_replace('/^([a-z0-9_:-]+)/im', ''.'\1'.'', $source); -- cgit v1.2.3