PHP8에서 상단 파일 경로, 하단 파일 경로가 없을때 나오는 오류 수정 (루미집사님,211025)
This commit is contained in:
@ -7,7 +7,7 @@ if (G5_IS_MOBILE) {
|
|||||||
include_once(G5_BBS_PATH.'/_head.php');
|
include_once(G5_BBS_PATH.'/_head.php');
|
||||||
echo html_purifier(stripslashes($board['bo_mobile_content_head']));
|
echo html_purifier(stripslashes($board['bo_mobile_content_head']));
|
||||||
} else {
|
} else {
|
||||||
if(is_include_path_check($board['bo_include_head'])) { //파일경로 체크
|
if($board['bo_include_head'] && is_include_path_check($board['bo_include_head'])) { //파일경로 체크
|
||||||
@include ($board['bo_include_head']);
|
@include ($board['bo_include_head']);
|
||||||
} else { //파일경로가 올바르지 않으면 기본파일을 가져옴
|
} else { //파일경로가 올바르지 않으면 기본파일을 가져옴
|
||||||
include_once(G5_BBS_PATH.'/_head.php');
|
include_once(G5_BBS_PATH.'/_head.php');
|
||||||
|
|||||||
@ -8,7 +8,7 @@ if (G5_IS_MOBILE) {
|
|||||||
include_once(G5_BBS_PATH.'/_tail.php');
|
include_once(G5_BBS_PATH.'/_tail.php');
|
||||||
} else {
|
} else {
|
||||||
echo html_purifier(stripslashes($board['bo_content_tail']));
|
echo html_purifier(stripslashes($board['bo_content_tail']));
|
||||||
if(is_include_path_check($board['bo_include_tail'])) { //파일경로 체크
|
if($board['bo_include_tail'] && is_include_path_check($board['bo_include_tail'])) { //파일경로 체크
|
||||||
@include ($board['bo_include_tail']);
|
@include ($board['bo_include_tail']);
|
||||||
} else { //파일경로가 올바르지 않으면 기본파일을 가져옴
|
} else { //파일경로가 올바르지 않으면 기본파일을 가져옴
|
||||||
include_once(G5_BBS_PATH.'/_tail.php');
|
include_once(G5_BBS_PATH.'/_tail.php');
|
||||||
|
|||||||
Reference in New Issue
Block a user