r7471 수정

git-svn-id: http://xe-core.googlecode.com/svn/sandbox@7472 201d5d3c-b55e-5fd7-737f-ddc643e51545
This commit is contained in:
ngleader 2010-05-19 03:07:06 +00:00
parent 33074041d0
commit 156c830572

View file

@ -221,7 +221,7 @@ function convertEncodingStr($str) {
for($i=0;$i<count($charset_list);$i++) {
$charset = $charset_list[$i];
if($str){
$cstr = iconv($charset,$charset.'\\INGORE',$str);
$cstr = iconv($charset,$charset.'\\IGNORE',$str);
if($str == $cstr);
return $cstr;
}