게시판, 1:1문의, 쇼핑몰상품 상단내용 하단내용에 hook 적용

This commit is contained in:
thisgun
2023-01-02 17:58:22 +09:00
parent df176c6ad9
commit c3272f9170
6 changed files with 12 additions and 12 deletions

View File

@ -5,7 +5,7 @@ if (!defined('_GNUBOARD_')) exit; // 개별 페이지 접근 불가
if (G5_IS_MOBILE) {
// 모바일의 경우 설정을 따르지 않는다.
include_once(G5_BBS_PATH.'/_head.php');
echo html_purifier(stripslashes($board['bo_mobile_content_head']));
echo run_replace('board_mobile_content_head', html_purifier(stripslashes($board['bo_mobile_content_head'])), $board);
} else {
// 상단 파일 경로를 입력하지 않았다면 기본 상단 파일도 include 하지 않음
if (trim($board['bo_include_head'])) {
@ -15,5 +15,5 @@ if (G5_IS_MOBILE) {
include_once(G5_BBS_PATH.'/_head.php');
}
}
echo html_purifier(stripslashes($board['bo_content_head']));
echo run_replace('board_content_head', html_purifier(stripslashes($board['bo_content_head'])), $board);
}