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/include/rcube_imap.php | |
parent | 70aa900cba768a99347d41a9af57edb52ec77577 (diff) |
Fix fallback if no message strucutre is provided by the imap server
Diffstat (limited to 'program/include/rcube_imap.php')
-rw-r--r-- | program/include/rcube_imap.php | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/program/include/rcube_imap.php b/program/include/rcube_imap.php index 6ce683aa0..5e56eedb3 100644 --- a/program/include/rcube_imap.php +++ b/program/include/rcube_imap.php @@ -1248,7 +1248,10 @@ class rcube_imap */ function &get_body($uid, $part=1) { - return $this->get_message_part($uid, $part); + $headers = $this->get_headers($uid); + return rcube_charset_convert( + $this->mime_decode($this->get_message_part($uid, $part), 'quoted-printable'), + $headers->charset ? $headers->charset : $this->default_charset); } |