From c1040e437158930847aa8c1cd852e407dd41c9dc Mon Sep 17 00:00:00 2001 From: gnuboard Date: Mon, 4 Mar 2013 14:03:26 +0900 Subject: [PATCH] =?UTF-8?q?ckedior=20=EB=85=B8=EC=B6=9C=EB=90=98=EC=A7=80?= =?UTF-8?q?=20=EC=95=8A=EB=8D=98=20=EC=98=A4=EB=A5=98=20=ED=95=B4=EA=B2=B0?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- bbs/write.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/bbs/write.php b/bbs/write.php index ccb072ce3..0c7b3abd7 100644 --- a/bbs/write.php +++ b/bbs/write.php @@ -203,7 +203,6 @@ if ($member['mb_level'] >= $board['bo_html_level']) $is_secret = $board['bo_use_secret']; $is_dhtml_editor = false; -$editor_html = editor_html('wr_content', $content, $is_dhtml_editor); $editor_js = ''; // 모바일에서는 DHTML 에디터 사용불가 if (!G4_IS_MOBILE && $board['bo_use_dhtml_editor'] && $member['mb_level'] >= $board['bo_html_level']) { @@ -211,6 +210,7 @@ if (!G4_IS_MOBILE && $board['bo_use_dhtml_editor'] && $member['mb_level'] >= $bo $editor_js .= get_editor_js('wr_content', $is_dhtml_editor); $editor_js .= chk_editor_js('wr_content', $is_dhtml_editor); } +$editor_html = editor_html('wr_content', $content, $is_dhtml_editor); $is_mail = false; if ($config['cf_email_use'] && $board['bo_use_email'])