58 lines
1.5 KiB
PHP
58 lines
1.5 KiB
PHP
<?php
|
|
include_once('./_common.php');
|
|
include_once(G5_EDITOR_LIB);
|
|
|
|
if (!$is_member) {
|
|
alert_close("상품문의는 회원만 작성 가능합니다.");
|
|
}
|
|
|
|
$w = trim($_REQUEST['w']);
|
|
$it_id = trim($_REQUEST['it_id']);
|
|
$iq_id = trim($_REQUEST['iq_id']);
|
|
|
|
$chk_secret = '';
|
|
|
|
if($w == '') {
|
|
$qa['iq_email'] = $member['mb_email'];
|
|
$qa['iq_hp'] = $member['mb_hp'];
|
|
}
|
|
|
|
if ($w == "u")
|
|
{
|
|
$qa = sql_fetch(" select * from {$g5['g5_shop_item_qa_table']} where iq_id = '$iq_id' ");
|
|
if (!$qa) {
|
|
alert_close("상품문의 정보가 없습니다.");
|
|
}
|
|
|
|
$it_id = $qa['it_id'];
|
|
|
|
if (!$iq_admin && $qa['mb_id'] != $member['mb_id']) {
|
|
alert_close("자신의 상품문의만 수정이 가능합니다.");
|
|
}
|
|
|
|
if($qa['iq_secret'])
|
|
$chk_secret = 'checked="checked"';
|
|
}
|
|
|
|
include_once(G5_PATH.'/head.sub.php');
|
|
|
|
$is_dhtml_editor = false;
|
|
// 모바일에서는 DHTML 에디터 사용불가
|
|
if ($config['cf_editor'] && !G5_IS_MOBILE) {
|
|
$is_dhtml_editor = true;
|
|
}
|
|
$editor_html = editor_html('iq_question', $qa['iq_question'], $is_dhtml_editor);
|
|
$editor_js = '';
|
|
$editor_js .= get_editor_js('iq_question', $is_dhtml_editor);
|
|
$editor_js .= chk_editor_js('iq_question', $is_dhtml_editor);
|
|
|
|
$itemqaform_skin = G5_MSHOP_SKIN_PATH.'/itemqaform.skin.php';
|
|
|
|
if(!file_exists($itemqaform_skin)) {
|
|
echo str_replace(G5_PATH.'/', '', $itemqaform_skin).' 스킨 파일이 존재하지 않습니다.';
|
|
} else {
|
|
include_once($itemqaform_skin);
|
|
}
|
|
|
|
include_once(G5_PATH.'/tail.sub.php');
|
|
?>
|