diff options
author | thomascube <thomas@roundcube.net> | 2008-06-05 10:33:29 +0000 |
---|---|---|
committer | thomascube <thomas@roundcube.net> | 2008-06-05 10:33:29 +0000 |
commit | 0a99895ead5fec3e48719761a142a1c0a25d244c (patch) | |
tree | 34fb2cd26cb8da57d447f46d6ec593cda6da4026 /program/steps/mail | |
parent | 70aa900cba768a99347d41a9af57edb52ec77577 (diff) |
Fix fallback if no message strucutre is provided by the imap server
Diffstat (limited to 'program/steps/mail')
-rw-r--r-- | program/steps/mail/func.inc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/program/steps/mail/func.inc b/program/steps/mail/func.inc index ac4eb6b01..ddaf29063 100644 --- a/program/steps/mail/func.inc +++ b/program/steps/mail/func.inc @@ -728,7 +728,7 @@ function rcmail_message_body($attrib) } } else - $out .= $MESSAGE->body; + $out .= html::div('message-part', html::div('pre', $MESSAGE->body)); $ctype_primary = strtolower($MESSAGE->structure->ctype_primary); |