Plugin Directory

Changeset 2859792


Ignore:
Timestamp:
02/03/2023 06:28:19 PM (3 years ago)
Author:
cardpaysolutions
Message:

tagging version 2.0.20

Location:
fd-payments-for-woo
Files:
8 edited
1 copied

Legend:

Unmodified
Added
Removed
  • fd-payments-for-woo/tags/2.0.20/includes/class-wc-payeezy-gateway.php

    r2771212 r2859792  
    358358        // Attempt to process the capture.
    359359        $tran_meta      = get_post_meta( $order_id, '_payeezy_transaction', true );
    360         $orig_tran_type = $tran_meta['transaction_type'];
     360        $orig_tran_type = isset( $tran_meta['transaction_type'] ) ? $tran_meta['transaction_type'] : '';
    361361        $amount         = $order->get_total();
    362362
  • fd-payments-for-woo/tags/2.0.20/includes/legacy/class-wc-payeezy-gateway.php

    r2828965 r2859792  
    351351        // Attempt to process the capture.
    352352        $tran_meta      = get_post_meta( $order_id, '_payeezy_transaction', true );
    353         $orig_tran_type = $tran_meta['transaction_type'];
     353        $orig_tran_type = isset( $tran_meta['transaction_type'] ) ? $tran_meta['transaction_type'] : '';
    354354        $amount         = $order->get_total();
    355355
  • fd-payments-for-woo/tags/2.0.20/readme.txt

    r2828965 r2859792  
    44Requires at least: 4.0
    55Tested up to: 6.1
    6 Stable tag: 2.0.19
     6Stable tag: 2.0.20
    77License: GPLv3 or later
    88License URI: http://www.gnu.org/licenses/gpl-3.0.html
     
    114114== Changelog ==
    115115
     116= 2.0.20 =
     117
     118* Fix PHP 8.1 bug
     119
    116120= 2.0.18 =
    117121
  • fd-payments-for-woo/tags/2.0.20/woocommerce-payeezy.php

    r2828965 r2859792  
    44 * Plugin URI: http://www.cardpaysolutions.com/woocommerce?pid=83cf9aa647bc5b4e
    55 * Description: Adds the First Data Payeezy Gateway to WooCommerce. First Data TransArmor Solution is used to securely support saved credit card profiles, subscriptions, and pre-orders.
    6  * Version: 2.0.19
     6 * Version: 2.0.20
    77 * Author: Cardpay Solutions, Inc.
    88 * Author URI: http://www.cardpaysolutions.com/
     
    1212 * Domain Path: /languages
    1313 * WC requires at least: 2.2.0
    14  * WC tested up to: 7.1
     14 * WC tested up to: 7.3
    1515 *
    1616 * Copyright 2016 Cardpay Solutions, Inc.  (email : sales@cardpaysolutions.com)
  • fd-payments-for-woo/trunk/includes/class-wc-payeezy-gateway.php

    r2771212 r2859792  
    358358        // Attempt to process the capture.
    359359        $tran_meta      = get_post_meta( $order_id, '_payeezy_transaction', true );
    360         $orig_tran_type = $tran_meta['transaction_type'];
     360        $orig_tran_type = isset( $tran_meta['transaction_type'] ) ? $tran_meta['transaction_type'] : '';
    361361        $amount         = $order->get_total();
    362362
  • fd-payments-for-woo/trunk/includes/legacy/class-wc-payeezy-gateway.php

    r2828965 r2859792  
    351351        // Attempt to process the capture.
    352352        $tran_meta      = get_post_meta( $order_id, '_payeezy_transaction', true );
    353         $orig_tran_type = $tran_meta['transaction_type'];
     353        $orig_tran_type = isset( $tran_meta['transaction_type'] ) ? $tran_meta['transaction_type'] : '';
    354354        $amount         = $order->get_total();
    355355
  • fd-payments-for-woo/trunk/readme.txt

    r2828965 r2859792  
    44Requires at least: 4.0
    55Tested up to: 6.1
    6 Stable tag: 2.0.19
     6Stable tag: 2.0.20
    77License: GPLv3 or later
    88License URI: http://www.gnu.org/licenses/gpl-3.0.html
     
    114114== Changelog ==
    115115
     116= 2.0.20 =
     117
     118* Fix PHP 8.1 bug
     119
    116120= 2.0.18 =
    117121
  • fd-payments-for-woo/trunk/woocommerce-payeezy.php

    r2828965 r2859792  
    44 * Plugin URI: http://www.cardpaysolutions.com/woocommerce?pid=83cf9aa647bc5b4e
    55 * Description: Adds the First Data Payeezy Gateway to WooCommerce. First Data TransArmor Solution is used to securely support saved credit card profiles, subscriptions, and pre-orders.
    6  * Version: 2.0.19
     6 * Version: 2.0.20
    77 * Author: Cardpay Solutions, Inc.
    88 * Author URI: http://www.cardpaysolutions.com/
     
    1212 * Domain Path: /languages
    1313 * WC requires at least: 2.2.0
    14  * WC tested up to: 7.1
     14 * WC tested up to: 7.3
    1515 *
    1616 * Copyright 2016 Cardpay Solutions, Inc.  (email : sales@cardpaysolutions.com)
Note: See TracChangeset for help on using the changeset viewer.