diff options
| author | alec <alec@208e9e7b-5314-0410-a742-e7e81cd9613c> | 2010-03-17 12:34:52 +0000 |
|---|---|---|
| committer | alec <alec@208e9e7b-5314-0410-a742-e7e81cd9613c> | 2010-03-17 12:34:52 +0000 |
| commit | f10992541f7719cb0a9f9335887cca2cccbced24 (patch) | |
| tree | 8ae98eb69c0844e8940733cdcc5a1f50ccc30fa7 | |
| parent | 3ad728839b826a74a909fee8b9adfeb27e793755 (diff) | |
- Use iconv's //IGNORE instead of //TRANSLIT
git-svn-id: https://svn.roundcube.net/trunk@3369 208e9e7b-5314-0410-a742-e7e81cd9613c
| -rw-r--r-- | roundcubemail/program/include/main.inc | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/roundcubemail/program/include/main.inc b/roundcubemail/program/include/main.inc index 777bb5806..3aee7b4b7 100644 --- a/roundcubemail/program/include/main.inc +++ b/roundcubemail/program/include/main.inc @@ -209,8 +209,8 @@ function rcube_charset_convert($str, $from, $to=NULL) // convert charset using iconv module if (function_exists('iconv') && $from != 'UTF-7' && $to != 'UTF-7') { if ($iconv_options === null) { - // transliterate characters not available in output charset - $iconv_options = '//TRANSLIT'; + // ignore characters not available in output charset + $iconv_options = '//IGNORE'; if (iconv('', $iconv_options, '') === false) { // iconv implementation does not support options $iconv_options = ''; |
