mobile skin 적용중

This commit is contained in:
gnuboard
2013-01-17 22:38:51 +09:00
parent 199538ca17
commit 2919314035
49 changed files with 910 additions and 1033 deletions

View File

@ -2,7 +2,7 @@
define('_CAPTCHA_', 1);
include_once('./_common.php');
if (!$member[mb_id])
if ($is_guest)
alert_close('회원만 이용하실 수 있습니다.');
if (!$member[mb_open] && $is_admin != 'super' && $member[mb_id] != $mb_id)
@ -35,7 +35,15 @@ if ($me_recv_mb_id)
$g4['title'] = '쪽지 보내기';
include_once($g4['path'].'/head.sub.php');
$member_skin_path = $g4['path'].'/skin/member/'.$config[cf_member_skin];
if ($g4['https_url'])
$memo_action_url = "{$g4['https_url']}/{$g4['bbs']}/memo_form_update.php";
else
$memo_action_url = "{$g4['url']}/{$g4['bbs']}/memo_form_update.php";
if (G4_IS_MOBILE)
$member_skin_path = $g4['mobile_path'].'/skin/member/'.$config[cf_member_skin];
else
$member_skin_path = $g4['path'].'/skin/member/'.$config[cf_member_skin];
include_once($member_skin_path.'/memo_form.skin.php');
include_once($g4['path'].'/tail.sub.php');