관리자 < 내용관리 삭제가 안되는 오류수정 및 PHP8 경고메시지 뜨는 코드 추가 수정

This commit is contained in:
thisgun
2021-01-05 14:12:04 +09:00
parent bb0a1aac75
commit c77a001355
6 changed files with 34 additions and 31 deletions

View File

@ -15,8 +15,8 @@ if (!isset($g5['title'])) {
$g5_head_title = $g5['title'];
}
else {
$g5_head_title = $g5['title']; // 상태바에 표시될 제목
$g5_head_title .= " | ".$config['cf_title'];
// 상태바에 표시될 제목
$g5_head_title = implode(' | ', array_filter(array('', $config['cf_title'])));
}
$g5['title'] = strip_tags($g5['title']);