diff options
author | thomascube <thomas@roundcube.net> | 2006-09-19 18:14:38 +0000 |
---|---|---|
committer | thomascube <thomas@roundcube.net> | 2006-09-19 18:14:38 +0000 |
commit | c8c1a30ceb84086926bcde4dc1495d0e646366de (patch) | |
tree | fa6964185c1d7acf3a73b36d720967d3af29e4d3 /program/include/main.inc | |
parent | 19bef0eaf7b8c44c7b99da234571834ccc83f48b (diff) |
Correct UTF-7 to UTF-8 conversion if mbstring is not available
Diffstat (limited to 'program/include/main.inc')
-rw-r--r-- | program/include/main.inc | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/program/include/main.inc b/program/include/main.inc index bbda83aa7..c6e9857b0 100644 --- a/program/include/main.inc +++ b/program/include/main.inc @@ -893,7 +893,7 @@ function rcube_charset_convert($str, $from, $to=NULL) // convert string to UTF-8 if ($from=='UTF-7') - $str = rcube_charset_convert(UTF7DecodeString($str), 'ISO-8859-1'); + $str = utf7_to_utf8($str); else if (($from=='ISO-8859-1') && function_exists('utf8_encode')) $str = utf8_encode($str); else if ($from!='UTF-8') @@ -904,7 +904,7 @@ function rcube_charset_convert($str, $from, $to=NULL) // encode string for output if ($to=='UTF-7') - return UTF7EncodeString(rcube_charset_convert($str, 'UTF-8', 'ISO-8859-1')); + return utf8_to_utf7($str); else if ($to=='ISO-8859-1' && function_exists('utf8_decode')) return utf8_decode($str); else if ($to!='UTF-8') |