Fix displaying HTML forwarded body text
authorMichael M Slusarz <slusarz@curecanti.org>
Wed, 7 Oct 2009 18:00:48 +0000 (12:00 -0600)
committerMichael M Slusarz <slusarz@curecanti.org>
Wed, 7 Oct 2009 18:31:06 +0000 (12:31 -0600)
imp/lib/Compose.php

index 70ced4f..ae9e759 100644 (file)
@@ -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 {