Fix displaying of multipart/alternative messages with empty parts (#1488750)
| | |
| | | CHANGELOG Roundcube Webmail |
| | | =========================== |
| | | |
| | | - Fix displaying of multipart/alternative messages with empty parts (#1488750) |
| | | - Fix threaded list sorting on PHP < 5.2.9 (#1488748) |
| | | - Plugin API: Add 'email_list' argument for identities data in user_create hook |
| | | - Integrated zipdownload plugin to download all attachments (#1445509) |
| | |
| | | foreach ($structure->parts as $p => $sub_part) { |
| | | $sub_mimetype = $sub_part->mimetype; |
| | | |
| | | // skip empty parts |
| | | if (!$sub_part->size) |
| | | continue; |
| | | |
| | | // check if sub part is |
| | | if ($sub_mimetype == 'text/plain') |
| | | $plain_part = $p; |