git-svn-id: https://svn.code.sf.net/p/squirrelmail/code/trunk/squirrelmail@5427
7612ce4b-ef26-0410-bec9-
ea0150e637f0
*
* This implements all functions that do imap UTF7 conversions.
*
- * $Id $
+ * $Id$
*/
function sqimap_mb_convert_encoding($str, $to_encoding, $from_encoding, $default_charset)
return '';
global $default_charset;
- set_my_charset();
- if (strtolower($default_charset) != 'iso-8859-1') {
+ set_my_charset(); //must be called before using $default_charset
+ if ((strtolower($default_charset) != 'iso-8859-1') && ($default_charset != '')) {
$utf7_s = sqimap_mb_convert_encoding($s, 'UTF7-IMAP', $default_charset, $default_charset);
if ($utf7_s != '')
return $utf7_s;