글쓰기 기본 내용을 에디터로 변경
게시판 설정에 글쓰기 기본 내용 기능이 있습니다.
이곳에 입력한 내용은 게시판에 글쓰기할 때 내용 입력 부분에 기본 값으로 출력됩니다.
수정 파일 : /adm/board_form.php
<textarea id="bo_insert_content" name="bo_insert_content" rows="5"><?php echo $board['bo_insert_content'] ?></textarea>
여기를 이렇게 수정.
<?php echo editor_html("bo_insert_content", get_text($board['bo_insert_content'], 0)); ?>
하단 스크립트에 <?php echo get_editor_js("bo_insert_content"); ?> 추가
function fboardform_submit(f)
{
<?php echo get_editor_js("bo_content_head"); ?>
<?php echo get_editor_js("bo_content_tail"); ?>
<?php echo get_editor_js("bo_mobile_content_head"); ?>
<?php echo get_editor_js("bo_mobile_content_tail"); ?>
<?php echo get_editor_js("bo_insert_content"); ?>