Changeset 3219336
- Timestamp:
- 01/08/2025 11:33:53 PM (11 months ago)
- Location:
- wc-gmopg-gateway/trunk
- Files:
-
- 2 edited
-
readme.txt (modified) (2 diffs)
-
wc-gmopg-gateway.php (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
wc-gmopg-gateway/trunk/readme.txt
r3218613 r3219336 5 5 Requires at least: 4.4 6 6 Tested up to: 6.7.1 7 Stable tag: 0.1. 57 Stable tag: 0.1.6 8 8 License: GPLv2 or later 9 9 … … 44 44 == Changelog == 45 45 46 = 0.1.6 = 47 * Bugfix: webhook. 48 46 49 = 0.1.5 = 47 50 * Bugfix: logout on the thank you page. -
wc-gmopg-gateway/trunk/wc-gmopg-gateway.php
r3218613 r3219336 6 6 * Author: Hiroaki Miyashita 7 7 * Author URI: https://www.wpmarket.jp/ 8 * Version: 0.1. 58 * Version: 0.1.6 9 9 * Requires at least: 4.4 10 10 * Tested up to: 6.7.1 … … 306 306 307 307 if ( $_POST['Status'] == 'CAPTURE' || $_POST['Status'] == 'AUTH' || $_POST['Status'] == 'CHECK' || $_POST['Status'] == 'REQSUCCESS' || $_POST['Status'] == 'PAYSUCCESS' || $_POST['Status'] == 'EXPIRED' || $_POST['Status'] == 'CANCEL' || $_POST['Status'] == 'PAYFAIL' ) : 308 $order = new WC_Order( str_replace( 'wcgmopg', '', $_POST['OrderID'] ) ); 308 list( $order_id, $tmp ) = explode('-', $_POST['OrderID'] ); 309 $order = new WC_Order( str_replace( 'wcgmopg', '', $order_id ) ); 309 310 310 311 if ( !empty($order) ) :
Note: See TracChangeset
for help on using the changeset viewer.