diff --git a/Rocksolid_Light/rocksolid/newsportal.php b/Rocksolid_Light/rocksolid/newsportal.php index 5a625d5..7f42e30 100644 --- a/Rocksolid_Light/rocksolid/newsportal.php +++ b/Rocksolid_Light/rocksolid/newsportal.php @@ -903,9 +903,9 @@ function recode_charset($text,$source=false,$dest=false) { global $iconv_enable,$www_charset; if($dest==false) $dest=$www_charset; - if(($iconv_enable) && ($source!=false)) { + if($iconv_enable) { $return=iconv($source, - $dest."//TRANSLIT",$text); + $dest."//TRANSLIT//IGNORE",$text); if($return!="") return $return; else