Plugin Directory

Changeset 3221887


Ignore:
Timestamp:
01/14/2025 12:20:48 AM (15 months ago)
Author:
boldpay
Message:
  • Bug fix (Duplicate order notes)
Location:
bold-pay
Files:
5 added
3 edited

Legend:

Unmodified
Added
Removed
  • bold-pay/trunk/index.php

    r3136450 r3221887  
    44 * Plugin URI: https://boldpay.cc/login
    55 * Description: BOLD.Pay is a cloud-based multi-channel payment access plugin for WooCommerce.
    6  * Version: 1.5.8
     6 * Version: 1.5.9
    77 * Author: MACROKIOSK
    88 * Author URI: https://www.macrokiosk.com/
  • bold-pay/trunk/readme.txt

    r3136445 r3221887  
    55WooCommerce requires at least: 2.6.0
    66WooCommerce tested up to: 9.1.4
    7 Stable tag: 1.5.8
     7Stable tag: 1.5.9
    88License: GPLv2 or later
    99License URI: http://www.gnu.org/licenses/gpl-2.0.html
  • bold-pay/trunk/src/boldpay.php

    r3136445 r3221887  
    251251                        if ( strtolower( $query['Status'] ) == 'success' ) {
    252252                            # 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') ) {
    254254                               
    255255                                $order->payment_complete();                             
Note: See TracChangeset for help on using the changeset viewer.