summaryrefslogtreecommitdiff
path: root/program/include
diff options
context:
space:
mode:
authorthomascube <thomas@roundcube.net>2008-02-08 17:33:08 +0000
committerthomascube <thomas@roundcube.net>2008-02-08 17:33:08 +0000
commit38b012e072f808393f87f5cc3059fab7072fb8b7 (patch)
tree3a17471f98dcc372d9f271080c337fb74fdbecbe /program/include
parent5bc0ab10fc24d22c422517abd0a9eaa0be31f529 (diff)
Added some charset aliases to fix typical mis-labelling (#1484565)
Diffstat (limited to 'program/include')
-rw-r--r--program/include/main.inc14
1 files changed, 11 insertions, 3 deletions
diff --git a/program/include/main.inc b/program/include/main.inc
index 61a9c9cd1..9e33bae69 100644
--- a/program/include/main.inc
+++ b/program/include/main.inc
@@ -907,18 +907,26 @@ function rcube_charset_convert($str, $from, $to=NULL)
if ($from==$to || $str=='' || empty($from))
return $str;
+
+ $aliases = array(
+ 'UNKNOWN-8BIT' => 'ISO-8859-15',
+ 'X-UNKNOWN' => 'ISO-8859-15',
+ 'X-USER-DEFINED' => 'ISO-8859-15',
+ 'ISO-8859-8-I' => 'ISO-8859-8',
+ 'KS_C_5601-1987' => 'EUC-KR',
+ 'GB2312' => 'GB18030'
+ );
// convert charset using iconv module
if (function_exists('iconv') && $from != 'UTF-7' && $to != 'UTF-7')
{
- $iconv_map = array('KS_C_5601-1987' => 'EUC-KR');
- return iconv(($iconv_map[$from] ? $iconv_map[$from] : $from), ($iconv_map[$to] ? $iconv_map[$to] : $to) . "//IGNORE", $str);
+ return iconv(($aliases[$from] ? $aliases[$from] : $from), ($aliases[$to] ? $aliases[$to] : $to) . "//IGNORE", $str);
}
// convert charset using mbstring module
if ($MBSTRING)
{
- $mb_map = array('UTF-7' => 'UTF7-IMAP', 'KS_C_5601-1987' => 'EUC-KR');
+ $mb_map = $aliases + array('UTF-7' => 'UTF7-IMAP');
// return if convert succeeded
if (($out = mb_convert_encoding($str, ($mb_map[$to] ? $mb_map[$to] : $to), ($mb_map[$from] ? $mb_map[$from] : $from))) != '')