From e393bcc42de7c5a384e250557b4ea1e55ae5f346 Mon Sep 17 00:00:00 2001 From: thomasb Date: Tue, 30 Dec 2008 13:30:20 +0000 Subject: Use
 instead of 
: Fix line-break issue when copy & paste in Firefox (#1485425) git-svn-id: https://svn.roundcube.net/trunk@2197 208e9e7b-5314-0410-a742-e7e81cd9613c --- roundcubemail/program/steps/mail/func.inc | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'roundcubemail/program') diff --git a/roundcubemail/program/steps/mail/func.inc b/roundcubemail/program/steps/mail/func.inc index b3d7cfc85..3fcdeb0b2 100644 --- a/roundcubemail/program/steps/mail/func.inc +++ b/roundcubemail/program/steps/mail/func.inc @@ -755,8 +755,8 @@ function rcmail_print_body($part, $p = array()) // insert the links for urls and mailtos $body = preg_replace("/##string_replacement\{([0-9]+)\}##/e", "\$replace_strings[\\1]", join("\n", $a_lines)); - - return "
".$body."\n
"; + + return html::tag('pre', array(), $body); } /** @@ -924,7 +924,7 @@ function rcmail_message_body($attrib) } } else - $out .= html::div('message-part', html::div('pre', Q($MESSAGE->body))); + $out .= html::div('message-part', html::tag('pre', array(), Q($MESSAGE->body))); $ctype_primary = strtolower($MESSAGE->structure->ctype_primary); -- cgit v1.2.3