mirror of
https://github.com/Lastorder-DC/rhymix.git
synced 2026-01-08 03:01:43 +09:00
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:
parent
02a8e7f3a3
commit
3ba5495f69
2 changed files with 2 additions and 2 deletions
|
|
@ -210,7 +210,7 @@
|
|||
$content = trim(cut_str($content, $str_size, '...'));
|
||||
|
||||
// >, <, "를 다시 복구
|
||||
return str_replace(array('<','>','"',' '),array('<','>','"',' '), $content);
|
||||
return str_replace(array('<','>','"'),array('<','>','"'), $content);
|
||||
}
|
||||
|
||||
function getRegdate($format = 'Y.m.d H:i:s') {
|
||||
|
|
|
|||
|
|
@ -287,7 +287,7 @@
|
|||
$content = trim(cut_str($content, $str_size, '...'));
|
||||
|
||||
// >, <, "를 다시 복구
|
||||
return str_replace(array('<','>','"',' '),array('<','>','"',' '), $content);
|
||||
return str_replace(array('<','>','"'),array('<','>','"'), $content);
|
||||
}
|
||||
|
||||
function getRegdate($format = 'Y.m.d H:i:s') {
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue