Changeset 1635735
- Timestamp:
- 04/12/2017 05:05:12 AM (9 years ago)
- Location:
- gnucommerce/trunk
- Files:
-
- 7 edited
-
config.php (modified) (1 diff)
-
gnucommerce.php (modified) (1 diff)
-
lib/gc_order_request.class.php (modified) (2 diffs)
-
lib/gc_shop.lib.php (modified) (1 diff)
-
readme.txt (modified) (2 diffs)
-
shop/inicis/INIStdPayReturn.php (modified) (1 diff)
-
shop/orderform.php (modified) (3 diffs)
Legend:
- Unmodified
- Added
- Removed
-
gnucommerce/trunk/config.php
r1612999 r1635735 5 5 6 6 public function __construct() { 7 define( 'GC_VERSION', '1.4. 3' );7 define( 'GC_VERSION', '1.4.4' ); 8 8 define( 'GC_NAME', 'gnucommerce' ); 9 9 define( 'GC_OPTION_KEY', 'gc_options' ); //쇼핑몰옵션키 -
gnucommerce/trunk/gnucommerce.php
r1612999 r1635735 5 5 * Author: SIR Soft 6 6 * Author URI: http://sir.kr 7 * Version: 1.4. 37 * Version: 1.4.4 8 8 * Text Domain: SIR Soft 9 9 */ -
gnucommerce/trunk/lib/gc_order_request.class.php
r1612999 r1635735 55 55 if( empty($value) ) continue; 56 56 57 $_REQUEST[sanitize_ key($key)] = sanitize_text_field($value);57 $_REQUEST[sanitize_text_field($key)] = sanitize_text_field($value); 58 58 } 59 59 } … … 69 69 $arr = explode('=', $tmp[$i]); 70 70 if( $arr[0] ){ 71 $_REQUEST[sanitize_ key($arr[0])] = isset($arr[1]) ? (string)sanitize_text_field($arr[1]) : '';71 $_REQUEST[sanitize_text_field($arr[0])] = isset($arr[1]) ? (string)sanitize_text_field($arr[1]) : ''; 72 72 } 73 73 } -
gnucommerce/trunk/lib/gc_shop.lib.php
r1612999 r1635735 2379 2379 $encfilelds = array(); 2380 2380 2381 if( $post_data['od_settle_case'] != gc_get_stype_names('banktransfer') ){ //무통장이 아니면2381 if( isset($post_data['od_settle_case']) && $post_data['od_settle_case'] != gc_get_stype_names('banktransfer') ){ //무통장이 아니면 2382 2382 //이니시스 필드 체크 추가 2383 2383 $tmp = array('currency', 'gopaymethod', 'oid', 'quotainterest', 'paymethod', 'cardcode', 'cardquota', 'rbankcode', 'reqsign', 'uid', 'sid', 'version', 'good_mny', 'goodname', 'buyername', 'buyeremail', 'parentemail', 'buyertel', 'recvname', 'recvtel', 'recvaddr', 'recvpostnum', 'quotainterest'); -
gnucommerce/trunk/readme.txt
r1612999 r1635735 5 5 Requires at least: 4.0 6 6 Tested up to: 4.7 7 Stable tag: 1.4. 37 Stable tag: 1.4.4 8 8 License: GPLv2 or later 9 9 License URI: http://www.gnu.org/licenses/gpl-2.0.html … … 64 64 65 65 == Changelog == 66 67 = 1.4.4 = 68 이니시스 모바일 결제 오류를 수정했습니다. ( 석둘님이 알려주심 ) 66 69 67 70 = 1.4.2 = -
gnucommerce/trunk/shop/inicis/INIStdPayReturn.php
r1518161 r1635735 190 190 if (strcmp($secureSignature, $resultMap['authSignature']) != 0) { 191 191 192 $error_msg .= ", 데이터 위변조 체크 실패 ";192 $error_msg .= ", 데이터 위변조 체크 실패 {$secureSignature} : {$resultMap['authSignature']} "; 193 193 194 194 } -
gnucommerce/trunk/shop/orderform.php
r1612999 r1635735 790 790 // 재고체크 791 791 var stock_msg = gnucommerce.order_stock_check(); 792 if( stock_msg!= "") {792 if(jQuery.trim(stock_msg) != "") { 793 793 alert(stock_msg); 794 794 return false; … … 938 938 }); 939 939 940 if( save_result) {940 if(jQuery.trim(save_result)) { 941 941 alert(save_result); 942 942 return false; … … 1612 1612 // 재고체크 1613 1613 var stock_msg = gnucommerce.order_stock_check(); 1614 if( stock_msg!= "") {1614 if(jQuery.trim(stock_msg) != "") { 1615 1615 alert(stock_msg); 1616 1616 return false;
Note: See TracChangeset
for help on using the changeset viewer.