document, comment의 getSummary()에서 space(사이띄움)을  로 변환하면서 영문자의 경우 모든 내용이 붙어 있는 걸로 나와 개행이 안되는 문제 해결

git-svn-id: http://xe-core.googlecode.com/svn/sandbox@3903 201d5d3c-b55e-5fd7-737f-ddc643e51545
This commit is contained in:
zero 2008-03-03 16:40:52 +00:00
parent 02a8e7f3a3
commit 3ba5495f69
2 changed files with 2 additions and 2 deletions

View file

@ -210,7 +210,7 @@
$content = trim(cut_str($content, $str_size, '...'));
// >, <, "를 다시 복구
return str_replace(array('<','>','"',' '),array('&lt;','&gt;','&quot;','&nbsp;'), $content);
return str_replace(array('<','>','"'),array('&lt;','&gt;','&quot;'), $content);
}
function getRegdate($format = 'Y.m.d H:i:s') {

View file

@ -287,7 +287,7 @@
$content = trim(cut_str($content, $str_size, '...'));
// >, <, "를 다시 복구
return str_replace(array('<','>','"',' '),array('&lt;','&gt;','&quot;','&nbsp;'), $content);
return str_replace(array('<','>','"'),array('&lt;','&gt;','&quot;'), $content);
}
function getRegdate($format = 'Y.m.d H:i:s') {