From 1ac1aa0c8a34428765db47cd6bcffe3642cd2068 Mon Sep 17 00:00:00 2001 From: zero Date: Tue, 11 Dec 2007 05:51:41 +0000 Subject: [PATCH] =?UTF-8?q?xml=5Fparser=5Fcreate=EC=8B=9C=EC=97=90=20utf-8?= =?UTF-8?q?=20=EC=9D=B8=EC=BD=94=EB=94=A9=20=EC=A7=80=EC=A0=95=ED=95=98?= =?UTF-8?q?=EB=8F=84=EB=A1=9D=20=EC=BD=94=EB=93=9C=20=EB=B3=80=EA=B2=BD.?= =?UTF-8?q?=20=ED=95=9C=EC=8A=B9=EC=97=BD=EB=8B=98=20=EC=A0=9C=EB=B3=B4(?= =?UTF-8?q?=3F=3F)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit git-svn-id: http://xe-core.googlecode.com/svn/sandbox@3299 201d5d3c-b55e-5fd7-737f-ddc643e51545 --- classes/xml/XmlParser.class.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/classes/xml/XmlParser.class.php b/classes/xml/XmlParser.class.php index c8d5ca358..ed2b50738 100644 --- a/classes/xml/XmlParser.class.php +++ b/classes/xml/XmlParser.class.php @@ -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");