Plugin Directory

Changeset 1808234


Ignore:
Timestamp:
01/24/2018 12:24:53 AM (8 years ago)
Author:
kagla
Message:

1.5.0 update

Location:
gnucommerce/trunk
Files:
8 edited

Legend:

Unmodified
Added
Removed
  • gnucommerce/trunk/config.php

    r1787384 r1808234  
    55
    66    public function __construct() {
    7         define( 'GC_VERSION', '1.4.9' );
     7        define( 'GC_VERSION', '1.5.0' );
    88        define( 'GC_NAME', 'gnucommerce' );
    99        define( 'GC_OPTION_KEY', 'gc_options' );    //쇼핑몰옵션키
  • gnucommerce/trunk/gnucommerce.php

    r1787384 r1808234  
    55 *  Author: SIR Soft
    66 *  Author URI: http://sir.kr
    7  *  Version: 1.4.9
     7 *  Version: 1.5.0
    88 *  Text Domain: SIR Soft
    99 */
  • gnucommerce/trunk/readme.txt

    r1787384 r1808234  
    44Tags: gnucommerce, shopping, cart, mall, youngcart, gnu, gnuboard, korea, korean, bulletin, board, bbs, community, forum, kalga
    55Requires at least: 4.0
    6 Tested up to: 4.9.1
    7 Stable tag: 1.4.9
     6Tested up to: 4.9.2
     7Stable tag: 1.5.0
    88License: GPLv2 or later
    99License URI: http://www.gnu.org/licenses/gpl-2.0.html
     
    6464
    6565== Changelog ==
     66
     67= 1.5.0 =
     68php 7.2.1 버전대에서 일어나는 오류를 수정했습니다. ( getenv 함수를 사용안함 )
    6669
    6770= 1.4.9 =
  • gnucommerce/trunk/shop/inicis/escrow.register.php

    r1442174 r1808234  
    6262$inipay->SetField("type",           "escrow");                        // 고정 (절대 수정 불가)
    6363$inipay->SetField("escrowtype",     "dlv");                           // 고정 (절대 수정 불가)
    64 $inipay->SetField("dlv_ip",         getenv("REMOTE_ADDR"));           // 고정
     64$inipay->SetField("dlv_ip",         $_SERVER['REMOTE_ADDR']);           // 고정
    6565
    6666$inipay->SetField("oid",            $oid);
  • gnucommerce/trunk/shop/kcp/escrow.register.php

    r1442174 r1808234  
    1313$mod_type       = 'STE1';
    1414$mod_desc       = '에스크로 배송시작 등록';
    15 $cust_ip        = getenv('REMOTE_ADDR');
     15$cust_ip        = $_SERVER['REMOTE_ADDR'];
    1616
    1717$c_PayPlus = new C_PP_CLI;
  • gnucommerce/trunk/shop/kcp/orderpartcancel.inc.php

    r1732634 r1808234  
    3737$req_tx         = 'mod';
    3838$mod_desc       = gc_iconv_euckr($mod_memo);
    39 $cust_ip        = getenv('REMOTE_ADDR');
     39$cust_ip        = $_SERVER['REMOTE_ADDR'];
    4040$rem_mny        = (int)$od['od_receipt_price'] - (int)$od['od_refund_price'];
    4141$mod_mny        = (int)$tax_mny;
  • gnucommerce/trunk/shop/kcp/pp_ax_hub.php

    r1732634 r1808234  
    3232    $tran_cd        = isset($_POST["tran_cd"]) ? gc_check_array_sanitize($_POST[ "tran_cd"        ]) : ''; // 처리 종류
    3333    /* = -------------------------------------------------------------------------- = */
    34     $cust_ip        = getenv( "REMOTE_ADDR"    ); // 요청 IP
     34    $cust_ip        = $_SERVER['REMOTE_ADDR']; // 요청 IP
    3535    $ordr_idxx      = isset($_POST["ordr_idxx"]) ? gc_check_array_sanitize($_POST[ "ordr_idxx"      ]) : ''; // 쇼핑몰 주문번호
    3636    $good_name      = isset($_POST["good_name"]) ? addslashes(sanitize_text_field($_POST[ "good_name"])) : ''; // 상품명
  • gnucommerce/trunk/shop/kcp/pp_cli_hub.php

    r1732634 r1808234  
    122122    $rem_mny    = isset($_POST[ "rem_mny"    ]) ? sanitize_text_field($_POST[ "rem_mny"     ]) : '';                             // 변경처리 이전 금액
    123123    /* = -------------------------------------------------------------------------- = */
    124     $cust_ip    = getenv( "REMOTE_ADDR" );                            // 요청 IP
     124    $cust_ip    = $_SERVER['REMOTE_ADDR'];                            // 요청 IP
    125125    /* ============================================================================== */
    126126
Note: See TracChangeset for help on using the changeset viewer.