diff --git a/bbs/logout.php b/bbs/logout.php index f3c5bff41..b62fb3af7 100644 --- a/bbs/logout.php +++ b/bbs/logout.php @@ -2,8 +2,8 @@ include_once('./_common.php'); // 이호경님 제안 코드 -session_unset(); // 모든 세션변수를 언레지스터 시켜줌 -session_destroy(); // 세션해제함 +session_unset(); // 모든 세션변수를 언레지스터 시켜줌 +session_destroy(); // 세션해제함 // 자동로그인 해제 -------------------------------- set_cookie('ck_mb_id', '', 0); @@ -16,7 +16,10 @@ if ($url) { alert('url에 도메인을 지정할 수 없습니다.'); } - $link = $url; + if($url == 'shop') + $link = G4_SHOP_URL; + else + $link = $url; } else if ($bo_table) { $link = G4_BBS_URL.'/board.php?bo_table='.$bo_table; } else { diff --git a/mobile/shop/shop.head.php b/mobile/shop/shop.head.php index 843b00594..b9c1d2702 100644 --- a/mobile/shop/shop.head.php +++ b/mobile/shop/shop.head.php @@ -42,7 +42,7 @@ include_once(G4_LIB_PATH.'/popular.lib.php');