<p><br> 외의 태그만 사용되었을 경우 줄바꿈 처리가 엉망으로 되는 문제 수정

This commit is contained in:
conory 2017-07-19 22:53:29 +09:00
parent 26d5323e5b
commit 686032df29

View file

@ -924,10 +924,9 @@ class editorModel extends editor
{
$converter = 'text';
}
if (!is_html_content($obj->content) || $obj->use_editor === 'N')
elseif ($obj->use_editor === 'N')
{
$converter = 'default';
$converter = 'nl2br';
}
}