diff options
author | alecpl <alec@alec.pl> | 2008-07-22 09:09:34 +0000 |
---|---|---|
committer | alecpl <alec@alec.pl> | 2008-07-22 09:09:34 +0000 |
commit | 9103d1706d769c3924036443d3131c3a66ac6667 (patch) | |
tree | c581d0f62c6fe6756f3e9f05bb885186dc76353c /program | |
parent | 53668e78203845d21ed6d35be63c3ba33d060ff7 (diff) |
#1485200: fixed text/enriched displaying
Diffstat (limited to 'program')
-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 36605894a..f4282370c 100644 --- a/program/steps/mail/func.inc +++ b/program/steps/mail/func.inc @@ -595,7 +595,7 @@ function rcmail_print_body($part, $p = array()) // text/enriched else if ($part->ctype_secondary=='enriched') { $part->ctype_secondary = 'html'; - return Q(enriched_to_html($body), 'show'); + return Q(enriched_to_html($part->body), 'show'); } else $body = $part->body; |