mirror of
https://github.com/roundcube/roundcubemail.git
synced 2026-03-09 09:36:50 +01:00
- Fix displaying of alternative-inside-alternative messages (#1485713)
This commit is contained in:
@@ -5,6 +5,7 @@ CHANGELOG RoundCube Webmail
|
||||
----------
|
||||
- Fix checking for recent messages on various IMAP servers (#1485702)
|
||||
- performance fix: Don't fetch quota and recent messages in "message view" mode
|
||||
- Fix displaying of alternative-inside-alternative messages (#1485713)
|
||||
|
||||
2009/01/28 (alec)
|
||||
----------
|
||||
|
||||
@@ -266,7 +266,7 @@ class rcube_message
|
||||
$html_part = $p;
|
||||
else if ($sub_ctype_primary=='text' && $sub_ctype_secondary=='enriched')
|
||||
$enriched_part = $p;
|
||||
else if ($sub_ctype_primary=='multipart' && ($sub_ctype_secondary=='related' || $sub_ctype_secondary=='mixed'))
|
||||
else if ($sub_ctype_primary=='multipart' && in_array($sub_ctype_secondary, array('related', 'mixed', 'alternative')))
|
||||
$related_part = $p;
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user