diff --git a/bbs/ckeditor/ckeditor.lib.php b/bbs/ckeditor/ckeditor.lib.php index b27798394..7781b0c24 100644 --- a/bbs/ckeditor/ckeditor.lib.php +++ b/bbs/ckeditor/ckeditor.lib.php @@ -7,6 +7,7 @@ function editor_html($id, $content, $ckeditor=true, $class="") static $js = true; $html = ""; + $html .= "웹에디터 시작"; if ($js) { $html .= "\n".''; $html .= "\n".''; @@ -16,6 +17,7 @@ function editor_html($id, $content, $ckeditor=true, $class="") $ckeditor_class = $ckeditor ? "ckeditor" : ""; $html .= "\n"; + $html .= "\n웹 에디터 끝"; return $html; }