Changeset 3205 in subversion
- Timestamp:
- Jan 13, 2010 7:59:21 AM (3 years ago)
- Location:
- trunk/roundcubemail/program/include
- Files:
-
- 2 edited
-
main.inc (modified) (1 diff)
-
rcube_shared.inc (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
trunk/roundcubemail/program/include/main.inc
r3201 r3205 196 196 // convert charset using iconv module 197 197 if (function_exists('iconv') && $from != 'UTF-7' && $to != 'UTF-7') { 198 $_iconv = iconv($from, $to . '//IGNORE', $str);198 $_iconv = @iconv($from, $to . '//IGNORE', $str); 199 199 if ($_iconv !== false) { 200 200 return $_iconv; -
trunk/roundcubemail/program/include/rcube_shared.inc
r3195 r3205 519 519 return $res; 520 520 521 if (function_exists('iconv') && ($res = iconv('UTF-8', 'UTF-8//IGNORE', $input)) !== false)521 if (function_exists('iconv') && ($res = @iconv('UTF-8', 'UTF-8//IGNORE', $input)) !== false) 522 522 return $res; 523 523
Note: See TracChangeset
for help on using the changeset viewer.
