Changeset 3221887
- Timestamp:
- 01/14/2025 12:20:48 AM (15 months ago)
- Location:
- bold-pay
- Files:
-
- 5 added
- 3 edited
-
tags/1.5.9 (added)
-
tags/1.5.9/index.php (added)
-
tags/1.5.9/readme.txt (added)
-
tags/1.5.9/src (added)
-
tags/1.5.9/src/boldpay.php (added)
-
trunk/index.php (modified) (1 diff)
-
trunk/readme.txt (modified) (1 diff)
-
trunk/src/boldpay.php (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
bold-pay/trunk/index.php
r3136450 r3221887 4 4 * Plugin URI: https://boldpay.cc/login 5 5 * Description: BOLD.Pay is a cloud-based multi-channel payment access plugin for WooCommerce. 6 * Version: 1.5. 86 * Version: 1.5.9 7 7 * Author: MACROKIOSK 8 8 * Author URI: https://www.macrokiosk.com/ -
bold-pay/trunk/readme.txt
r3136445 r3221887 5 5 WooCommerce requires at least: 2.6.0 6 6 WooCommerce tested up to: 9.1.4 7 Stable tag: 1.5. 87 Stable tag: 1.5.9 8 8 License: GPLv2 or later 9 9 License URI: http://www.gnu.org/licenses/gpl-2.0.html -
bold-pay/trunk/src/boldpay.php
r3136445 r3221887 251 251 if ( strtolower( $query['Status'] ) == 'success' ) { 252 252 # only update if order is pending or failed or on-hold 253 if ( strtolower( $order->get_status() ) == 'pending' || strtolower( $order->get_status() ) == 'failed' || strtolower( $order->get_status() ) == 'on-hold') {253 if ( $status != 'success' && (strtolower( $order->get_status() ) == 'pending' || strtolower( $order->get_status() ) == 'failed' || strtolower( $order->get_status() ) == 'on-hold') ) { 254 254 255 255 $order->payment_complete();
Note: See TracChangeset
for help on using the changeset viewer.