From 6fd339174e28063a167e19b7a88f67f6a556d8c7 Mon Sep 17 00:00:00 2001 From: thisgun Date: Mon, 9 Jan 2023 15:33:03 +0900 Subject: [PATCH] =?UTF-8?q?=EB=82=B4=EC=9A=A9=EA=B4=80=EB=A6=AC=20hook=20?= =?UTF-8?q?=EC=BD=94=EB=93=9C=20=EC=B6=94=EA=B0=80?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- bbs/content.php | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) 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).'이 존재하지 않습니다.

'; }