summaryrefslogtreecommitdiff
path: root/roundcubemail/program
diff options
context:
space:
mode:
authoralec <alec@208e9e7b-5314-0410-a742-e7e81cd9613c>2008-07-22 09:09:34 +0000
committeralec <alec@208e9e7b-5314-0410-a742-e7e81cd9613c>2008-07-22 09:09:34 +0000
commit2b31c2433e5111a32ed23d78a26e89768ccb1ac5 (patch)
tree7c9c4a05e0bb24e69730b56e7e5c839e57039454 /roundcubemail/program
parent59c81e3ceb667ddd9f3ead823beb01c4aaf6cb87 (diff)
#1485200: fixed text/enriched displaying
git-svn-id: https://svn.roundcube.net/trunk@1605 208e9e7b-5314-0410-a742-e7e81cd9613c
Diffstat (limited to 'roundcubemail/program')
-rw-r--r--roundcubemail/program/steps/mail/func.inc2
1 files changed, 1 insertions, 1 deletions
diff --git a/roundcubemail/program/steps/mail/func.inc b/roundcubemail/program/steps/mail/func.inc
index 36605894a..f4282370c 100644
--- a/roundcubemail/program/steps/mail/func.inc
+++ b/roundcubemail/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;