summaryrefslogtreecommitdiff
path: root/program/steps/mail/func.inc
diff options
context:
space:
mode:
authorthomascube <thomas@roundcube.net>2008-06-05 10:33:29 +0000
committerthomascube <thomas@roundcube.net>2008-06-05 10:33:29 +0000
commit0a99895ead5fec3e48719761a142a1c0a25d244c (patch)
tree34fb2cd26cb8da57d447f46d6ec593cda6da4026 /program/steps/mail/func.inc
parent70aa900cba768a99347d41a9af57edb52ec77577 (diff)
Fix fallback if no message strucutre is provided by the imap server
Diffstat (limited to 'program/steps/mail/func.inc')
-rw-r--r--program/steps/mail/func.inc2
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);