잘못된 따옴표 수정
This commit is contained in:
@ -16,7 +16,7 @@ $cart_title4 = "배송완료";
|
||||
auth_check($auth[$sub_menu], "w");
|
||||
|
||||
$g4['title'] = $html_title;
|
||||
include_once($g4['admin_path'].'/admin.head.php');
|
||||
include_once(G4_ADMIN_PATH.'/admin.head.php');
|
||||
|
||||
//------------------------------------------------------------------------------
|
||||
// 설정 시간이 지난 주문서 없는 장바구니 자료 삭제
|
||||
@ -189,7 +189,7 @@ for ($i=0; $row=sql_fetch_array($result); $i++)
|
||||
$list = $i%2;
|
||||
echo "
|
||||
<tr class='list$list'>
|
||||
<td align=center title='{$row['ct_id']}'><input type="hidden" id="ct_id" name="ct_id"[$i] value='{$row['ct_id']}'><input type="checkbox" id='ct_chk_{$i}' name='ct_chk[{$i}]' value='1'></td>
|
||||
<td align=center title='{$row['ct_id']}'><input type=\"hidden\" id=\"ct_id\" name=\"ct_id\"[$i] value='{$row['ct_id']}'><input type=\"checkbox\" id='ct_chk_{$i}' name='ct_chk[{$i}]' value='1'></td>
|
||||
<td style='padding-top:5px; padding-bottom:5px;'><table width='100%'><tr><td width=40 align=center>$image</td><td>$it_name</td></tr></table></td>
|
||||
<td align=center>{$row['ct_status']}</td>
|
||||
<td align=center>$row[ct_qty]</td>
|
||||
@ -478,7 +478,7 @@ if ($od['od_receipt_point'] > 0)
|
||||
{
|
||||
// 은행계좌를 배열로 만든후
|
||||
$str = explode("\n", $default['de_bank_account']);
|
||||
$bank_account = "\n<select id="od_bank_account" name="od_bank_account">\n";
|
||||
$bank_account = "\n<select id=\"od_bank_account\" name=\"od_bank_account\">\n";
|
||||
$bank_account .= "<option value=''>------------ 선택하십시오 ------------\n";
|
||||
for ($i=0; $i<count($str); $i++) {
|
||||
$str[$i] = str_replace("\r", "", $str[$i]);
|
||||
@ -487,7 +487,7 @@ if ($od['od_receipt_point'] > 0)
|
||||
$bank_account .= "</select> ";
|
||||
}
|
||||
else if ($od['od_settle_case'] == '가상계좌')
|
||||
$bank_account = $od['od_bank_account'] . "<input type="hidden" id="od_bank_account" name="od_bank_account" value='{$od['od_bank_account']}'>";
|
||||
$bank_account = $od['od_bank_account'] . "<input type=\"hidden\" id=\"od_bank_account\" name=\"od_bank_account\" value='{$od['od_bank_account']}'>";
|
||||
else if ($od['od_settle_case'] == '계좌이체')
|
||||
$bank_account = $od['od_settle_case'];
|
||||
?>
|
||||
@ -855,5 +855,5 @@ function form_submit(status)
|
||||
</script>
|
||||
|
||||
<?
|
||||
include_once("$g4[admin_path]/admin.tail.php");
|
||||
include_once(G4_ADMIN_PATH.'/admin.tail.php');
|
||||
?>
|
||||
@ -5,7 +5,7 @@ if (!defined("_GNUBOARD_")) exit; // 개별 페이지 접근 불가
|
||||
if (!defined("_ORDERMAIL_")) exit;
|
||||
|
||||
// 주문자님께 메일발송 체크를 했다면
|
||||
if ($od_send_mail)
|
||||
if ($od_send_mail)
|
||||
{
|
||||
$od = sql_fetch(" select * from $g4[yc4_order_table] where od_id = '$od_id' ");
|
||||
|
||||
@ -25,7 +25,7 @@ if ($od_send_mail)
|
||||
b.it_opt4_subject,
|
||||
b.it_opt5_subject,
|
||||
b.it_opt6_subject
|
||||
from $g4[yc4_cart_table] a inner join $g4[yc4_item_table] b on (b.it_id="a".it_id)
|
||||
from $g4[yc4_cart_table] a inner join $g4[yc4_item_table] b on (b.it_id = a.it_id)
|
||||
where a.on_uid = '$od[on_uid]'
|
||||
order by a.ct_id ";
|
||||
$result = sql_query($sql);
|
||||
@ -113,7 +113,7 @@ if ($od_send_mail)
|
||||
}
|
||||
|
||||
// 입금 또는 배송내역이 있다면 메일 발송
|
||||
if ($is_receipt || $is_delivery)
|
||||
if ($is_receipt || $is_delivery)
|
||||
{
|
||||
ob_start();
|
||||
include "$g4[shop_path]/mail/ordermail.mail.php";
|
||||
@ -125,7 +125,7 @@ if ($od_send_mail)
|
||||
|
||||
// 메일 보낸 내역 상점메모에 update
|
||||
$od_shop_memo = "$g4[time_ymdhis] - 결제/배송내역 메일발송\n" . $od[od_shop_memo];;
|
||||
/* 1.00.06
|
||||
/* 1.00.06
|
||||
** 주석처리 - 처리하지 않음
|
||||
if ($receipt_check)
|
||||
$od_shop_memo .= ", 입금확인";
|
||||
|
||||
@ -1,8 +1,8 @@
|
||||
<?
|
||||
$sub_menu = "400400";
|
||||
include_once("./_common.php");
|
||||
include_once($g4['path'].'/lib/mailer.lib.php');
|
||||
include_once($g4['path'].'/lib/icode.sms.lib.php');
|
||||
include_once(G4_LIB_PATH.'/mailer.lib.php');
|
||||
include_once(G4_LIB_PATH.'/icode.sms.lib.php');
|
||||
|
||||
auth_check($auth[$sub_menu], "w");
|
||||
|
||||
|
||||
Reference in New Issue
Block a user