From 737e2bf301c34ff8b245e553775ee59bf63328ed Mon Sep 17 00:00:00 2001 From: Michael M Slusarz Date: Wed, 7 Oct 2009 12:00:48 -0600 Subject: [PATCH] Fix displaying HTML forwarded body text --- imp/lib/Compose.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/imp/lib/Compose.php b/imp/lib/Compose.php index 70ced4f31..ae9e75965 100644 --- a/imp/lib/Compose.php +++ b/imp/lib/Compose.php @@ -1406,7 +1406,7 @@ class IMP_Compose if (!empty($msg_text) && ($compose_html || ($msg_text['mode'] == 'html'))) { $msg = $this->text2html($msg_pre) . - (($msg_text['mode'] == 'text') ? $this->text2html($msg_text['text']) : $msg_text) . + (($msg_text['mode'] == 'text') ? $this->text2html($msg_text['text']) : $msg_text['text']) . $this->text2html($msg_post); $format = 'html'; } else { -- 2.11.0