Merge branch 'master' of github.com:gnuboard/g4s

This commit is contained in:
chicpro
2013-01-17 16:46:57 +09:00
7 changed files with 45 additions and 30 deletions

4
bbs/_head.sub.php Normal file
View File

@ -0,0 +1,4 @@
<?
if (!defined("_GNUBOARD_")) exit; // 개별 페이지 접근 불가
include_once($g4['path'].'/head.sub.php');
?>

4
bbs/_tail.sub.php Normal file
View File

@ -0,0 +1,4 @@
<?
if (!defined("_GNUBOARD_")) exit; // 개별 페이지 접근 불가
include_once($g4['path'].'/tail.sub.php');
?>

View File

@ -2,7 +2,7 @@
include_once('./_common.php');
$g4['title'] = '로그인';
include_once('./_head.php');
include_once('./_head.sub.php');
$p = parse_url($url);
if ((isset($p['scheme']) && $p['scheme']) ||
@ -52,5 +52,5 @@ $member_skin_path = $g4['path'].'/skin/member/'.$config['cf_member_skin'];
include_once($member_skin_path.'/login.skin.php');
include_once('./_tail.php');
include_once('./_tail.sub.php');
?>