모바일 접속일 경우 아웃로그인을 구분함

This commit is contained in:
gnuboard
2013-03-05 09:50:45 +09:00
parent f4fbddb958
commit f886fd36f0
2 changed files with 6 additions and 2 deletions

View File

@ -13,7 +13,11 @@ function outlogin($skin_dir='basic')
$point = number_format($member['mb_point']);
}
$outlogin_skin_path = G4_SKIN_PATH.'/outlogin/'.$skin_dir;
if (G4_IS_MOBILE) {
$outlogin_skin_path = G4_MOBILE_PATH.'/'.G4_SKIN_DIR.'/outlogin/'.$skin_dir;
} else {
$outlogin_skin_path = G4_SKIN_PATH.'/outlogin/'.$skin_dir;
}
// 읽지 않은 쪽지가 있다면
if ($is_member) {