Plugin Directory

Changeset 1328111


Ignore:
Timestamp:
01/14/2016 06:49:28 AM (10 years ago)
Author:
massu0310
Message:

Update to 1.1.1

Location:
woopay-kcp/trunk
Files:
3 edited

Legend:

Unmodified
Added
Removed
  • woopay-kcp/trunk/includes/abstracts/abstract-woopay-core.php

    r1325525 r1328111  
    22if ( ! class_exists( 'WooPayCore' ) ) {
    33    abstract class WooPayCore extends WC_Payment_Gateway {
    4         public $core_version = '1.1.0';
     4        public $core_version = '1.1.1';
    55
    66        // Check SSL
     
    13931393
    13941394            if ( 200 == wp_remote_retrieve_response_code( $response ) ) {
    1395                 $result = json_decode( $response[ 'body' ] );
     1395                $body = $response[ 'body' ];
     1396                $result = json_decode( preg_replace('/[\x00-\x1F\x80-\xFF]/', '', $body) );
    13961397
    13971398                if ( $result->result == 'success' ) {
  • woopay-kcp/trunk/readme.txt

    r1325525 r1328111  
    1 === WooPay - KCP ===
     1=== WooPay - KCP ===
    22Contributors: planet8co, massu0310
    33Donate link: http://planet8.co
     
    6868
    6969= English =
     70= 1.1.1 =
     71* Bug fix for JSON call
     72
    7073= 1.1.0 =
    7174* Bug fix with some point plugins
     
    7881
    7982= Korean (한글) =
     83= 1.1.1 =
     84* JSON 호출시 생기는 버그 수정
     85
    8086= 1.1.0 =
    8187* 몇 포인트 플러그인과 생기는 충돌 수정
  • woopay-kcp/trunk/woopay-kcp.php

    r1325525 r1328111  
    44Plugin URI: http://www.planet8.co/
    55Description: Korean Payment Gateway integrated with KCP for WooCommerce.
    6 Version: 1.1.0
     6Version: 1.1.1
    77Author: Planet8
    88Author URI: http://www.planet8.co/
Note: See TracChangeset for help on using the changeset viewer.