#155. 서버의 php버전에 따라서 xml_parser_create함수와 관련된 파싱 부분에서 개행문자열의 trim처리에 의한 body 내용에 \n가 사라지는 문제를 해결

git-svn-id: http://xe-core.googlecode.com/svn/sandbox@2523 201d5d3c-b55e-5fd7-737f-ddc643e51545
This commit is contained in:
zero 2007-09-05 05:34:46 +00:00
parent e020b75e18
commit 3310622670

View file

@ -91,7 +91,7 @@
* @brief body 내용
**/
function _tagBody($parser, $body) {
if(!trim($body)) return;
//if(!trim($body)) return;
$this->output[count($this->output)-1]->body .= $body;
}