From: Michael M Slusarz Date: Wed, 7 Oct 2009 18:00:48 +0000 (-0600) Subject: Fix displaying HTML forwarded body text X-Git-Url: https://git.internetallee.de/?a=commitdiff_plain;h=737e2bf301c34ff8b245e553775ee59bf63328ed;p=horde.git Fix displaying HTML forwarded body text --- 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 {