게시판 하단 파일 출력 부분 조건문 처리 오류 수정

This commit is contained in:
chicpro
2014-03-12 11:58:04 +09:00
parent 7952268226
commit 8a81b42e0c

View File

@ -6,7 +6,7 @@ if (G5_IS_MOBILE) {
echo stripslashes($board['bo_mobile_content_tail']);
// 모바일의 경우 설정을 따르지 않는다.
include_once('./_tail.php');
} else if ($board['bo_include_tail']) {
} else {
echo stripslashes($board['bo_content_tail']);
@include ($board['bo_include_tail']);
}