Changeset 8241442 in github
- Timestamp:
- Jan 17, 2011 8:36:51 AM (2 years ago)
- Branches:
- master, HEAD, courier-fix, dev-browser-capabilities, pdo, release-0.6, release-0.7, release-0.8
- Children:
- e81a307
- Parents:
- a76cbdd
- Files:
-
- 2 edited
-
CHANGELOG (modified) (1 diff)
-
program/include/rcube_imap.php (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
CHANGELOG
ra76cbdd r8241442 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 -
program/include/rcube_imap.php
rf5e7b353 r8241442 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.
