관리자 경로 수정 작업중

This commit is contained in:
chicpro
2013-03-18 15:46:06 +09:00
parent 276a4b9231
commit 5719076252
12 changed files with 281 additions and 281 deletions

View File

@ -1,6 +1,6 @@
<?
include_once("./_common.php");
include_once("$g4[path]/lib/iteminfo.lib.php");
include_once('./_common.php');
include_once(G4_LIB_PATH.'/iteminfo.lib.php');
// 기존의 상품요약정보를 삭제하고 다시 만든다.
sql_query(" delete from {$g4['yc4_item_info_table']} where it_id = '{$_POST['it_id']}' ");
@ -19,18 +19,18 @@ foreach ($_POST as $key=>$value) {
ii_article = '$key',
ii_title = '$value[0]',
ii_value = '$value[1]' ";
sql_query($sql);
sql_query($sql);
}
$item_info_gubun = item_info_gubun($gubun);
$item_info_gubun .= $item_info_gubun ? " 등록됨" : "";
include_once("$g4[path]/head.sub.php");
include_once(G4_PATH.'/head.sub.php');
?>
<script type="text/javascript">
opener.document.getElementById("item_info_gubun").innerHTML = "<?=$item_info_gubun?>";
window.close();
</script>
<?
include_once("$g4[path]/tail.sub.php");
include_once(G4_PATH.'/tail.sub.php');
?>