부분옵션 검색 관련 부분 수정
This commit is contained in:
@ -352,7 +352,7 @@ html.no-overflowscrolling #sc_coupon_frm, html.no-overflowscrolling #od_coupon_f
|
||||
#sod_frm_paysel ul {margin:0;padding:0;}
|
||||
#sod_frm_paysel ul:after {display:block;visibility:hidden;clear:both;content:""}
|
||||
#sod_frm_paysel li {float:left;padding:5px 2%;width:46%;height:21px}
|
||||
x#sod_frm_paysel .KPAY{background:url('../img/kpay_logo.png') no-repeat;width:37px;height:15px;overflow:hidden;text-indent:-999px;display:inline-block;}
|
||||
#sod_frm_paysel .KPAY{background:url('../img/kpay_logo.png') no-repeat;width:37px;height:15px;overflow:hidden;text-indent:-999px;display:inline-block;}
|
||||
#sod_frm_paysel .PAYNOW{background:url('../img/paynow_logo.png') no-repeat;width:46px;height:15px;overflow:hidden;text-indent:-999px;display:inline-block;}
|
||||
#sod_frm_paysel .PAYCO{background:url('../img/payco_logo.png') no-repeat 1px;width:46px;height:15px;overflow:hidden;text-indent:-999px;display:inline-block;}
|
||||
.kakaopay_icon{background:url('../img/kakao.png') no-repeat ;height:21px;width:74px;display:inline-block;overflow:hidden;text-indent:-999px}
|
||||
|
||||
@ -8,11 +8,16 @@ $opt_id = preg_replace($pattern, '', $_POST['opt_id']);
|
||||
$idx = preg_replace('#[^0-9]#', '', $_POST['idx']);
|
||||
$sel_count = preg_replace('#[^0-9]#', '', $_POST['sel_count']);
|
||||
|
||||
/*
|
||||
옵션명 비슷한 부분 오류 수정
|
||||
수정자 : IT FOR ONE
|
||||
수정 내용 : and io_id like '$opt_id%' => and io_id like '$opt_id".chr(30)."'
|
||||
*/
|
||||
$sql = " select * from {$g5['g5_shop_item_option_table']}
|
||||
where io_type = '0'
|
||||
and it_id = '$it_id'
|
||||
and io_use = '1'
|
||||
and io_id like '$opt_id%'
|
||||
and io_id like '$opt_id".chr(30)."%'
|
||||
order by io_no asc ";
|
||||
$result = sql_query($sql);
|
||||
|
||||
|
||||
Reference in New Issue
Block a user