2022-09-17 20:50:50 +09:00
|
|
|
<?php
|
2024-09-19 20:57:39 +09:00
|
|
|
if (!defined('_GNUBOARD_'))
|
|
|
|
|
exit; // 개별 페이지 접근 불가
|
2022-09-17 20:50:50 +09:00
|
|
|
|
|
|
|
|
if (G5_IS_MOBILE) {
|
2024-09-19 20:57:39 +09:00
|
|
|
echo conv_content($qaconfig['qa_mobile_content_tail'], 1);
|
|
|
|
|
// 모바일의 경우 설정을 따르지 않는다.
|
|
|
|
|
include_once('./_tail.php');
|
2022-09-17 20:50:50 +09:00
|
|
|
} else {
|
2024-09-19 20:57:39 +09:00
|
|
|
echo conv_content($qaconfig['qa_content_tail'], 1);
|
|
|
|
|
if (is_include_path_check($qaconfig['qa_include_tail']))
|
|
|
|
|
@include($qaconfig['qa_include_tail']);
|
|
|
|
|
else
|
|
|
|
|
include('./_tail.php');
|
2022-09-17 20:50:50 +09:00
|
|
|
}
|