diff options
| author | alec <alec@208e9e7b-5314-0410-a742-e7e81cd9613c> | 2009-12-04 08:56:45 +0000 |
|---|---|---|
| committer | alec <alec@208e9e7b-5314-0410-a742-e7e81cd9613c> | 2009-12-04 08:56:45 +0000 |
| commit | 962cb67bdcb35702359b5f8ff2bd2fea64f59d50 (patch) | |
| tree | 136f3be9bd68b1aff645d7b844946175b9d70efa /roundcubemail | |
| parent | 9b861076be1c5afa95ff5b7566757cbf7f03eee2 (diff) | |
- don't treat content-disposition item in structure as message part
git-svn-id: https://svn.roundcube.net/trunk@3157 208e9e7b-5314-0410-a742-e7e81cd9613c
Diffstat (limited to 'roundcubemail')
| -rw-r--r-- | roundcubemail/program/include/rcube_imap.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/roundcubemail/program/include/rcube_imap.php b/roundcubemail/program/include/rcube_imap.php index 7c8a26243..f47f56eb2 100644 --- a/roundcubemail/program/include/rcube_imap.php +++ b/roundcubemail/program/include/rcube_imap.php @@ -1368,7 +1368,7 @@ class rcube_imap } if ($struct->ctype_primary=='message') { - if (is_array($part[8]) && empty($struct->parts)) + if (is_array($part[8]) && $di != 8 && empty($struct->parts)) $struct->parts[] = $this->_structure_part($part[8], ++$count, $struct->mime_id); } |
