#18829511 : handle Korean Character in MSIE (thanks to 기진곰)

git-svn-id: http://xe-core.googlecode.com/svn/sandbox@7395 201d5d3c-b55e-5fd7-737f-ddc643e51545
This commit is contained in:
haneul 2010-04-26 14:09:14 +00:00
parent 527545099b
commit 1788b5083b

View file

@ -210,7 +210,7 @@
// 파일 출력
if(strstr($_SERVER['HTTP_USER_AGENT'], "MSIE")) {
$filename = urlencode($filename);
$filename = rawurlencode($filename);
$filename = preg_replace('/\./', '%2e', $filename, substr_count($filename, '.') - 1);
}