회원스킨이 존재하지 않는 경우 로그인을 할수 있도록 기존 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

@ -1651,8 +1651,7 @@ function get_selected($field, $value, $first=false)
function skin_path()
{
global $g4;
$skin_dir = 'skin';
$skin_path = $g4['path'].'/'.$skin_dir;
$skin_path = $g4['path'].'/'.$g4['skin_dir'];
if (G4_IS_MOBILE) $skin_path = $g4['mobile_path'].'/'.$skin_dir;
return $skin_path;
}