Plugin Directory

Changeset 2859802


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

tagging version 2.0.19

Location:
high-risk-payments-for-woo
Files:
8 edited
1 copied

Legend:

Unmodified
Added
Removed
  • high-risk-payments-for-woo/tags/2.0.19/includes/class-wc-cardpay-solutions-gateway.php

    r2770792 r2859802  
    358358        // Attempt to process the capture.
    359359        $tran_meta      = get_post_meta( $order_id, '_cardpay_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
  • high-risk-payments-for-woo/tags/2.0.19/includes/legacy/class-wc-cardpay-solutions-gateway.php

    r2770792 r2859802  
    351351        // Attempt to process the capture.
    352352        $tran_meta      = get_post_meta( $order_id, '_cardpay_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
  • high-risk-payments-for-woo/tags/2.0.19/readme.txt

    r2828967 r2859802  
    44Requires at least: 4.0
    55Tested up to: 6.1
    6 Stable tag: 2.0.18
     6Stable tag: 2.0.19
    77License: GPLv3 or later
    88License URI: http://www.gnu.org/licenses/gpl-3.0.html
     
    127127== Changelog ==
    128128
     129= 2.0.19 =
     130
     131* Fix PHP 8.1 bug
     132
    129133= 2.0.16 =
    130134
  • high-risk-payments-for-woo/tags/2.0.19/woocommerce-cardpay-solutions.php

    r2828967 r2859802  
    44 * Plugin URI: http://www.cardpaymerchant.com/woocommerce?pid=317d5f0aa67f1638
    55 * Description: Adds the Cardpay Solutions Gateway to WooCommerce. Customer Vault is used to securely support saved credit card profiles, subscriptions, and pre-orders.
    6  * Version: 2.0.18
     6 * Version: 2.0.19
    77 * Author: Cardpay Solutions, Inc.
    88 * Author URI: http://www.cardpaymerchant.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@cardpaymerchant.com)
  • high-risk-payments-for-woo/trunk/includes/class-wc-cardpay-solutions-gateway.php

    r2770792 r2859802  
    358358        // Attempt to process the capture.
    359359        $tran_meta      = get_post_meta( $order_id, '_cardpay_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
  • high-risk-payments-for-woo/trunk/includes/legacy/class-wc-cardpay-solutions-gateway.php

    r2770792 r2859802  
    351351        // Attempt to process the capture.
    352352        $tran_meta      = get_post_meta( $order_id, '_cardpay_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
  • high-risk-payments-for-woo/trunk/readme.txt

    r2828967 r2859802  
    44Requires at least: 4.0
    55Tested up to: 6.1
    6 Stable tag: 2.0.18
     6Stable tag: 2.0.19
    77License: GPLv3 or later
    88License URI: http://www.gnu.org/licenses/gpl-3.0.html
     
    127127== Changelog ==
    128128
     129= 2.0.19 =
     130
     131* Fix PHP 8.1 bug
     132
    129133= 2.0.16 =
    130134
  • high-risk-payments-for-woo/trunk/woocommerce-cardpay-solutions.php

    r2828967 r2859802  
    44 * Plugin URI: http://www.cardpaymerchant.com/woocommerce?pid=317d5f0aa67f1638
    55 * Description: Adds the Cardpay Solutions Gateway to WooCommerce. Customer Vault is used to securely support saved credit card profiles, subscriptions, and pre-orders.
    6  * Version: 2.0.18
     6 * Version: 2.0.19
    77 * Author: Cardpay Solutions, Inc.
    88 * Author URI: http://www.cardpaymerchant.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@cardpaymerchant.com)
Note: See TracChangeset for help on using the changeset viewer.