Plugin Directory

Changeset 1494301


Ignore:
Timestamp:
09/12/2016 04:46:15 AM (10 years ago)
Author:
kagla
Message:

1.3.6 update

Location:
gnucommerce/trunk
Files:
5 edited

Legend:

Unmodified
Added
Removed
  • gnucommerce/trunk/config.php

    r1492980 r1494301  
    55
    66    public function __construct() {
    7         define( 'GC_VERSION', '1.3.5' );
     7        define( 'GC_VERSION', '1.3.6' );
    88        define( 'GC_NAME', 'gnucommerce' );
    99        define( 'GC_OPTION_KEY', 'gc_options' );    //쇼핑몰옵션키
  • gnucommerce/trunk/gnucommerce.php

    r1492980 r1494301  
    55 *  Author: SIR Soft
    66 *  Author URI: http://sir.kr
    7  *  Version: 1.3.5
     7 *  Version: 1.3.6
    88 *  Text Domain: SIR Soft
    99 */
  • gnucommerce/trunk/readme.txt

    r1492980 r1494301  
    55Requires at least: 4.0
    66Tested up to: 4.6
    7 Stable tag: 1.3.5
     7Stable tag: 1.3.6
    88License: GPLv2 or later
    99License URI: http://www.gnu.org/licenses/gpl-2.0.html
     
    6464
    6565== Changelog ==
     66
     67= 1.3.6 =
     68이시시스로 결제시 일어나는 오류( signature생성오류 )를 고쳤습니다. ( 콜라맨 님이 알려주심 )
    6669
    6770= 1.3.5 =
  • gnucommerce/trunk/shop/inicis/INIStdPayReturn.php

    r1492980 r1494301  
    185185                }
    186186
     187                $error_msg = isset($resultMap['resultMsg']) ? $resultMap['resultMsg'] : '';
     188
    187189                //결제보안키가 다른 경우.
    188190                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);
    194198
    195199                exit;
  • gnucommerce/trunk/shop/orderform.php

    r1492985 r1494301  
    17711771    <?php } ?>
    17721772    <?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 } ?>
    17731778    f.buyername.value   = f.od_name.value;
    17741779    f.buyeremail.value  = f.od_email.value;
Note: See TracChangeset for help on using the changeset viewer.