회원스킨이 존재하지 않는 경우 로그인을 할수 있도록 기존 basic 스킨으로 대체

This commit is contained in:
gnuboard
2013-01-19 22:23:47 +09:00
parent 479933f906
commit 1e2d4a6502
3 changed files with 8 additions and 2 deletions

View File

@ -48,6 +48,12 @@ if ($g4['https_url'])
else
$login_action_url = "{$g4['bbs_url']}/login_check.php";
// 로그인 스킨이 없는 경우 관리자 페이지 접속이 안되는 것을 막기 위하여 기본 스킨으로 대체
$login_file = $member_skin_path.'/login.skin.php';
if (!file_exists($login_file)) {
$member_skin_path = $g4['path'].'/'.$g4['skin_dir'].'/member/basic';
}
include_once($member_skin_path.'/login.skin.php');
include_once('./_tail.sub.php');