Changeset 1494301
- Timestamp:
- 09/12/2016 04:46:15 AM (10 years ago)
- Location:
- gnucommerce/trunk
- Files:
-
- 5 edited
-
config.php (modified) (1 diff)
-
gnucommerce.php (modified) (1 diff)
-
readme.txt (modified) (2 diffs)
-
shop/inicis/INIStdPayReturn.php (modified) (1 diff)
-
shop/orderform.php (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
gnucommerce/trunk/config.php
r1492980 r1494301 5 5 6 6 public function __construct() { 7 define( 'GC_VERSION', '1.3. 5' );7 define( 'GC_VERSION', '1.3.6' ); 8 8 define( 'GC_NAME', 'gnucommerce' ); 9 9 define( 'GC_OPTION_KEY', 'gc_options' ); //쇼핑몰옵션키 -
gnucommerce/trunk/gnucommerce.php
r1492980 r1494301 5 5 * Author: SIR Soft 6 6 * Author URI: http://sir.kr 7 * Version: 1.3. 57 * Version: 1.3.6 8 8 * Text Domain: SIR Soft 9 9 */ -
gnucommerce/trunk/readme.txt
r1492980 r1494301 5 5 Requires at least: 4.0 6 6 Tested up to: 4.6 7 Stable tag: 1.3. 57 Stable tag: 1.3.6 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.3.6 = 68 이시시스로 결제시 일어나는 오류( signature생성오류 )를 고쳤습니다. ( 콜라맨 님이 알려주심 ) 66 69 67 70 = 1.3.5 = -
gnucommerce/trunk/shop/inicis/INIStdPayReturn.php
r1492980 r1494301 185 185 } 186 186 187 $error_msg = isset($resultMap['resultMsg']) ? $resultMap['resultMsg'] : ''; 188 187 189 //결제보안키가 다른 경우. 188 190 if (strcmp($secureSignature, $resultMap['authSignature']) != 0) { 189 gc_alert('데이터 위변조 체크 실패', $page_return_url); 190 } else { 191 $s = '(오류코드:'.$resultMap['resultCode'].') '.$resultMap['resultMsg']; 192 gc_alert($s, $page_return_url); 193 } 191 192 $error_msg .= ", 데이터 위변조 체크 실패"; 193 194 } 195 196 $s = '(오류코드:'.$resultMap['resultCode'].') '.$error_msg; 197 gc_alert($s); 194 198 195 199 exit; -
gnucommerce/trunk/shop/orderform.php
r1492985 r1494301 1771 1771 <?php } ?> 1772 1772 <?php if($config['de_pg_service'] == 'inicis') { ?> 1773 f.price.value = f.good_mny.value; 1774 <?php if($config['de_tax_flag_use']) { ?> 1775 f.tax.value = f.comm_vat_mny.value; 1776 f.taxfree.value = f.comm_free_mny.value; 1777 <?php } ?> 1773 1778 f.buyername.value = f.od_name.value; 1774 1779 f.buyeremail.value = f.od_email.value;
Note: See TracChangeset
for help on using the changeset viewer.