xml_parser_create시에 utf-8 인코딩 지정하도록 코드 변경. 한승엽님 제보(??)

git-svn-id: http://xe-core.googlecode.com/svn/sandbox@3299 201d5d3c-b55e-5fd7-737f-ddc643e51545
This commit is contained in:
zero 2007-12-11 05:51:41 +00:00
parent 7e262bf62a
commit 1ac1aa0c8a

View file

@ -58,7 +58,7 @@
unset($this->lang);
}
$this->oParser = xml_parser_create();
$this->oParser = xml_parser_create('UTF-8');
xml_set_object($this->oParser, $this);
xml_set_element_handler($this->oParser, "_tagOpen", "_tagClosed");