PHP 8.1 기본스킨, 테마에서 없는 글,댓글 조회시 undefined variable 수정

This commit is contained in:
kit rio
2022-06-07 10:18:32 +09:00
committed by thisgun
parent 7950307173
commit 509b2c0be7
9 changed files with 64 additions and 38 deletions

View File

@ -21,7 +21,7 @@ $g5['board_title'] = ((G5_IS_MOBILE && $board['bo_mobile_subject']) ? $board['bo
// wr_id 값이 있으면 글읽기
if ((isset($wr_id) && $wr_id) || (isset($wr_seo_title) && $wr_seo_title)) {
// 글이 없을 경우 해당 게시판 목록으로 이동
if (!$write['wr_id']) {
if (!isset($write['wr_id'])) {
$msg = '글이 존재하지 않습니다.\\n\\n글이 삭제되었거나 이동된 경우입니다.';
alert($msg, get_pretty_url($bo_table));
}
@ -234,4 +234,4 @@ include_once(G5_BBS_PATH.'/board_tail.php');
echo "\n<!-- 사용스킨 : ".(G5_IS_MOBILE ? $board['bo_mobile_skin'] : $board['bo_skin'])." -->\n";
include_once(G5_PATH.'/tail.sub.php');
include_once(G5_PATH.'/tail.sub.php');