From c8c1a30ceb84086926bcde4dc1495d0e646366de Mon Sep 17 00:00:00 2001 From: thomascube Date: Tue, 19 Sep 2006 18:14:38 +0000 Subject: Correct UTF-7 to UTF-8 conversion if mbstring is not available --- program/include/main.inc | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'program/include') 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') -- cgit v1.2.3