From a7840714af6df965103b0c5081dad03b633d36bb Mon Sep 17 00:00:00 2001 From: Michael M Slusarz Date: Tue, 23 Feb 2010 01:46:21 -0700 Subject: [PATCH] Go back to using more widely used blockquote quoting method --- imp/lib/Compose.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/imp/lib/Compose.php b/imp/lib/Compose.php index 8df437852..ce7121a67 100644 --- a/imp/lib/Compose.php +++ b/imp/lib/Compose.php @@ -1482,9 +1482,9 @@ 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) : '') . '
'; $msg_text['mode'] = 'html'; } else { -- 2.11.0