diff --git a/bbs/content.php b/bbs/content.php index 304445b90..eadc48d23 100644 --- a/bbs/content.php +++ b/bbs/content.php @@ -81,20 +81,20 @@ $content_skin_url = get_skin_url('content', $co['co_skin']); $skin_file = $content_skin_path.'/content.skin.php'; if ($is_admin) - echo '
내용 수정
'; + echo run_replace('content_admin_button_html', '
내용 수정
', $co); ?> '; + echo run_replace('content_head_image_html', '
', $co); include($skin_file); $timg = G5_DATA_PATH.'/content/'.$co_id.'_t'; if (file_exists($timg)) // 하단 이미지 - echo '
'; + echo run_replace('content_tail_image_html', '
', $co); } else { echo '

'.str_replace(G5_PATH.'/', '', $skin_file).'이 존재하지 않습니다.

'; }