Changeset 1328111
- Timestamp:
- 01/14/2016 06:49:28 AM (10 years ago)
- Location:
- woopay-kcp/trunk
- Files:
-
- 3 edited
-
includes/abstracts/abstract-woopay-core.php (modified) (2 diffs)
-
readme.txt (modified) (3 diffs)
-
woopay-kcp.php (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
woopay-kcp/trunk/includes/abstracts/abstract-woopay-core.php
r1325525 r1328111 2 2 if ( ! class_exists( 'WooPayCore' ) ) { 3 3 abstract class WooPayCore extends WC_Payment_Gateway { 4 public $core_version = '1.1. 0';4 public $core_version = '1.1.1'; 5 5 6 6 // Check SSL … … 1393 1393 1394 1394 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) ); 1396 1397 1397 1398 if ( $result->result == 'success' ) { -
woopay-kcp/trunk/readme.txt
r1325525 r1328111 1 === WooPay - KCP ===1 === WooPay - KCP === 2 2 Contributors: planet8co, massu0310 3 3 Donate link: http://planet8.co … … 68 68 69 69 = English = 70 = 1.1.1 = 71 * Bug fix for JSON call 72 70 73 = 1.1.0 = 71 74 * Bug fix with some point plugins … … 78 81 79 82 = Korean (한글) = 83 = 1.1.1 = 84 * JSON 호출시 생기는 버그 수정 85 80 86 = 1.1.0 = 81 87 * 몇 포인트 플러그인과 생기는 충돌 수정 -
woopay-kcp/trunk/woopay-kcp.php
r1325525 r1328111 4 4 Plugin URI: http://www.planet8.co/ 5 5 Description: Korean Payment Gateway integrated with KCP for WooCommerce. 6 Version: 1.1. 06 Version: 1.1.1 7 7 Author: Planet8 8 8 Author URI: http://www.planet8.co/
Note: See TracChangeset
for help on using the changeset viewer.