Changeset 4421 in subversion
- Timestamp:
- Jan 17, 2011 8:36:51 AM (2 years ago)
- Location:
- trunk/roundcubemail
- Files:
-
- 2 edited
-
CHANGELOG (modified) (1 diff)
-
program/include/rcube_imap.php (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
trunk/roundcubemail/CHANGELOG
r4420 r4421 5 5 - Require PHP 5.2.1 or greater 6 6 - Fix %h/%z variables in username_domain option (#1487701) 7 - Workaround for setting charset in case of malformed bodystructure response (#1487700) 7 8 8 9 RELEASE 0.5 -
trunk/roundcubemail/program/include/rcube_imap.php
r4410 r4421 2054 2054 } 2055 2055 2056 $struct = &$this->_structure_part($structure );2056 $struct = &$this->_structure_part($structure, 0, '', $headers); 2057 2057 $struct->headers = get_object_vars($headers); 2058 2058 … … 2184 2184 if (isset($struct->ctype_parameters['charset'])) 2185 2185 $struct->charset = $struct->ctype_parameters['charset']; 2186 } 2187 2188 // #1487700: workaround for lack of charset in malformed structure 2189 if (empty($struct->charset) && !empty($mime_headers) && $mime_headers->charset) { 2190 $struct->charset = $mime_headers->charset; 2186 2191 } 2187 2192
Note: See TracChangeset
for help on using the changeset viewer.
