diff --git a/modules/editor/tpl/editor.html b/modules/editor/tpl/editor.html
index 642b40380..28ba82658 100644
--- a/modules/editor/tpl/editor.html
+++ b/modules/editor/tpl/editor.html
@@ -72,6 +72,7 @@
{$lang->about_dblclick_in_editor}
+
{$lang->edit->help_use_paragrapth}
diff --git a/modules/editor/tpl/js/editor.js b/modules/editor/tpl/js/editor.js
index 6301f2f41..f9616fee7 100755
--- a/modules/editor/tpl/js/editor.js
+++ b/modules/editor/tpl/js/editor.js
@@ -77,16 +77,9 @@ function editorStart(upload_target_srl) {
xAddEventListener(document,'mouseup',editorEventCheck);
xAddEventListener(document,'mousedown',editorHideObject);
- // 문단작성기능 on/off
- /*
if(xIE4Up) {
- xDisplay('editor_paragraph_'+upload_target_srl, 'none');
- xDisplay('editor_use_paragraph_box_'+upload_target_srl, 'inline');
- } else {
- xDisplay('editor_paragraph_'+upload_target_srl, 'block');
- xDisplay('editor_use_paragraph_box_'+upload_target_srl, 'none');
+ xGetElementById('for_ie_help_'+upload_target_srl).style.display = "block";
}
- */
// 에디터의 내용을 지속적으로 fo_obj.content.value에 입력
editorSyncContent(fo_obj.content, upload_target_srl);
@@ -186,20 +179,6 @@ function editorReplaceHTML(iframe_obj, html) {
// 입력 키에 대한 이벤트 체크
function editorKeyPress(evt) {
var e = new xEvent(evt);
- /*
- if (e.keyCode == 13) {
- if(xIE4Up && e.shiftKey == false && !xGetElementById("use_paragraph").checked ) {
- if(e.target.parentElement.document.designMode!="On") return;
- var obj = e.target.parentElement.document.selection.createRange();
- obj.pasteHTML('
');
- obj.select();
- evt.cancelBubble = true;
- evt.returnValue = false;
- return;
- }
- }
- */
-
if (e.ctrlKey) {
switch(e.keyCode) {
case 98 : // b
diff --git a/modules/editor/tpl/lang/ko.lang.php b/modules/editor/tpl/lang/ko.lang.php
index 250875811..a1b218651 100644
--- a/modules/editor/tpl/lang/ko.lang.php
+++ b/modules/editor/tpl/lang/ko.lang.php
@@ -50,8 +50,7 @@
$lang->edit->help_align_right = "오른쪽 정렬을 합니다";
$lang->edit->help_add_indent = "들여쓰기를 합니다";
$lang->edit->help_remove_indent = "들여쓰기를 제거합니다";
- $lang->edit->help_use_paragrapth = "정렬, 들여쓰기등의 문단 꾸미기 기능을 사용합니다.\n문단구분자로 P태그가 적용됩니다.\nShift+엔터를 이용하시면
- BR태그가 적용됩니다.";
+ $lang->edit->help_use_paragrapth = "문단을 이어 쓰시기를 원하실때에는 shift+엔터 키를 누르세요 (alt-S를 누르면 바로 저장이 됩니다)";
$lang->edit->upload = '첨부';
$lang->edit->upload_file = '파일 첨부';