에디터 기본 설정에 '자동저장 사용, HTML 허용' 설정 추가

This commit is contained in:
conory 2017-07-13 12:53:37 +09:00
parent 820c725d69
commit a8e0acc6cf
6 changed files with 27 additions and 11 deletions

View file

@ -150,7 +150,7 @@ class editorController extends editor
$editor_config->editor_height = (int)Context::get('editor_height');
$editor_config->comment_editor_height = (int)Context::get('comment_editor_height');
$editor_config->enable_autosave = Context::get('enable_autosave') ?: 'N';
$editor_config->enable_autosave = Context::get('enable_autosave') ?: 'Y';
$editor_config->allow_html = Context::get('allow_html') ?: 'Y';
$oModuleController = getController('module');