#18550948 fixed xml parser시 특수문자 제거

git-svn-id: http://xe-core.googlecode.com/svn/sandbox@7051 201d5d3c-b55e-5fd7-737f-ddc643e51545
This commit is contained in:
ngleader 2009-12-17 07:38:29 +00:00
parent 0c8a3e9145
commit 388e35f47c

View file

@ -39,6 +39,7 @@
$this->lang = Context::getLangType();
$this->input = $input?$input:$GLOBALS['HTTP_RAW_POST_DATA'];
$this->input = str_replace(array('',''),array('',''),$this->input);
// 지원언어 종류를 뽑음
preg_match_all("/xml:lang=\"([^\"].+)\"/i", $this->input, $matches);