g4를 g5로 변경

This commit is contained in:
chicpro
2013-09-13 14:32:06 +09:00
parent 9a18a049d5
commit 0f78b67eb7
563 changed files with 4097 additions and 4097 deletions

View File

@ -8,18 +8,18 @@ if (!$is_member)
$token = md5(uniqid(rand(), true));
set_session("ss_token", $token);
$sql = " select it_name from {$g4['shop_item_table']} where it_id='$it_id' ";
$sql = " select it_name from {$g5['shop_item_table']} where it_id='$it_id' ";
$it = sql_fetch($sql);
if (!$it['it_name'])
alert_close("등록된 상품이 아닙니다.");
$g4['title'] = $it['it_name'].' - 추천하기';
include_once(G4_PATH.'/head.sub.php');
$g5['title'] = $it['it_name'].' - 추천하기';
include_once(G5_PATH.'/head.sub.php');
?>
<!-- 상품 추천하기 시작 { -->
<div id="sit_rec_new" class="new_win">
<h1><?php echo $g4['title']; ?></h1>
<h1><?php echo $g5['title']; ?></h1>
<div class="cbox">
<form name="fitemrecommend" method="post" action="./itemrecommendmail.php" autocomplete="off" onsubmit="return fitemrecommend_check(this);">
@ -64,5 +64,5 @@ function fitemrecommend_check(f)
<!-- } 상품 추천하기 끝 -->
<?php
include_once(G4_PATH.'/tail.sub.php');
include_once(G5_PATH.'/tail.sub.php');
?>