diff options
| author | alec <alec@208e9e7b-5314-0410-a742-e7e81cd9613c> | 2008-11-20 17:45:31 +0000 |
|---|---|---|
| committer | alec <alec@208e9e7b-5314-0410-a742-e7e81cd9613c> | 2008-11-20 17:45:31 +0000 |
| commit | df59721b3ad945a0f2644de8824ef02d1b0dd006 (patch) | |
| tree | fae1db300b0efbd001c6bdac173c6a125e7b8c17 /roundcubemail/program | |
| parent | 2ae678dc87ed141cc3487378703d7482edfe4303 (diff) | |
#1485573: fix part=0 handling
git-svn-id: https://svn.roundcube.net/trunk@2071 208e9e7b-5314-0410-a742-e7e81cd9613c
Diffstat (limited to 'roundcubemail/program')
| -rw-r--r-- | roundcubemail/program/include/rcube_imap.php | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/roundcubemail/program/include/rcube_imap.php b/roundcubemail/program/include/rcube_imap.php index 856858b78..f1483af9b 100644 --- a/roundcubemail/program/include/rcube_imap.php +++ b/roundcubemail/program/include/rcube_imap.php @@ -1365,6 +1365,8 @@ class rcube_imap // TODO: Add caching for message parts + if (!$part) $part = 'TEXT'; + if ($print) { $mode = $o_part->encoding == 'base64' ? 3 : ($o_part->encoding == 'quoted-printable' ? 1 : 2); |
