9 lines
198 B
PHP
9 lines
198 B
PHP
<?
|
|
if (!defined("_GNUBOARD_")) exit; // 개별 페이지 접근 불가
|
|
|
|
if (G4_IS_MOBILE) {
|
|
include_once($g4['path'].'/mobile.head.php');
|
|
} else {
|
|
include_once($g4['path'].'/head.php');
|
|
}
|
|
?>
|