Ticket #1485050: rcube_imap_2.diff
| File rcube_imap_2.diff, 0.6 kB (added by Javer, 7 months ago) |
|---|
-
program/include/rcube_imap.php
old new 2337 2337 */ 2338 2338 function decode_mime_string($input, $fallback=null) 2339 2339 { 2340 global $IMAP; 2340 2341 $out = ''; 2341 2342 2342 2343 $pos = strpos($input, '=?'); … … 2362 2363 } 2363 2364 2364 2365 // no encoding information, use fallback 2365 return rcube_charset_convert($input, !empty($fallback) ? $fallback : $ this->default_charset);2366 return rcube_charset_convert($input, !empty($fallback) ? $fallback : $IMAP->default_charset); 2366 2367 } 2367 2368 2368 2369
