Ignore:
Timestamp:
Mar 17, 2010 8:34:52 AM (3 years ago)
Author:
alec
Message:
  • Use iconv's IGNORE instead of TRANSLIT
File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/roundcubemail/program/include/main.inc

    r3366 r3369  
    210210  if (function_exists('iconv') && $from != 'UTF-7' && $to != 'UTF-7') { 
    211211    if ($iconv_options === null) { 
    212       // transliterate characters not available in output charset 
    213       $iconv_options = '//TRANSLIT'; 
     212      // ignore characters not available in output charset 
     213      $iconv_options = '//IGNORE'; 
    214214      if (iconv('', $iconv_options, '') === false) { 
    215215        // iconv implementation does not support options 
Note: See TracChangeset for help on using the changeset viewer.