#18899105 CSS Optimizing시 인코딩 오류로 인한 오작동 수정

git-svn-id: http://xe-core.googlecode.com/svn/sandbox@7471 201d5d3c-b55e-5fd7-737f-ddc643e51545
This commit is contained in:
ngleader 2010-05-19 02:40:37 +00:00
parent 5054b69e98
commit 33074041d0

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,$str);
$cstr = iconv($charset,$charset.'\\INGORE',$str);
if($str == $cstr);
return $cstr;
}