From f1f0cc184dea9f56a251ca183a027c91d0fec6c5 Mon Sep 17 00:00:00 2001 From: Michael M Slusarz Date: Wed, 28 Jul 2010 11:15:00 -0600 Subject: [PATCH] More tweaks to HTML quoting style. Outlook and/or hotmail doesn't seem to reply to just blockquote/cite very well. --- 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 0c72354d3..f03b6805b 100644 --- a/imp/lib/Compose.php +++ b/imp/lib/Compose.php @@ -1495,7 +1495,7 @@ class IMP_Compose if (!empty($msg_text) && ($compose_html || ($msg_text['mode'] == 'html'))) { $msg = '

' . $this->text2html(trim($msg_pre)) . '

' . - '
' . + '
' . (($msg_text['mode'] == 'text') ? $this->text2html($msg_text['text']) : $msg_text['text']) . '
' . ($msg_post ? $this->text2html($msg_post) : '') . '
'; -- 2.11.0