Aleksander Machniak
2012-10-12 821d3c49629d3f05cfbe67d0cbd623e482cd0543
Fix displaying of multipart/alternative messages with empty parts (#1488750)

Conflicts:

CHANGELOG
2 files modified
5 ■■■■■ changed files
CHANGELOG 1 ●●●● patch | view | raw | blame | history
program/include/rcube_message.php 4 ●●●● patch | view | raw | blame | history
CHANGELOG
@@ -1,6 +1,7 @@
CHANGELOG Roundcube Webmail
===========================
- Fix displaying of multipart/alternative messages with empty parts (#1488750)
- Fix Warning: htmlspecialchars(): charset `RCMAIL_CHARSET' not supported warning in Installer (#1488744)
- Fix threaded list sorting on PHP < 5.2.9 (#1488748)
program/include/rcube_message.php
@@ -364,6 +364,10 @@
            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;