mobileXE charset을 utf-8이 아닌 euc-kr로 기본 설정

git-svn-id: http://xe-core.googlecode.com/svn/sandbox@4321 201d5d3c-b55e-5fd7-737f-ddc643e51545
This commit is contained in:
zero 2008-06-23 08:54:09 +00:00
parent 1cb113afc3
commit d63ec85153
2 changed files with 3 additions and 3 deletions

View file

@ -74,8 +74,8 @@
}
// charset 지정
function setCharSet($charset = 'utf-8') {
if(!$charset) $charset = 'utf-8';
function setCharSet($charset = 'euc-kr') {
if(!$charset) $charset = 'euc-kr';
$this->charset = $charset;
}