리스트에서 태그가 먹히는 문제 고치고 댓글에 이미지만 있을 경우 내용없음 출력하도록 고침

This commit is contained in:
BJRambo 2020-03-30 19:18:49 +09:00
parent f27ea1b666
commit 4a636c1182
3 changed files with 6 additions and 5 deletions

View file

@ -105,7 +105,8 @@ class ncenterliteController extends ncenterlite
else
{
$comment = getModel('comment')->getComment($obj->target_srl);
$text = cut_str($comment->get('content'), 30);
$contentString = $comment->getContentText(30);
$text = strlen($contentString) ? $contentString : '내용없음';
}
$args = new stdClass();