Changeset 2859802
- Timestamp:
- 02/03/2023 06:31:46 PM (3 years ago)
- Location:
- high-risk-payments-for-woo
- Files:
-
- 8 edited
- 1 copied
-
tags/2.0.19 (copied) (copied from high-risk-payments-for-woo/trunk)
-
tags/2.0.19/includes/class-wc-cardpay-solutions-gateway.php (modified) (1 diff)
-
tags/2.0.19/includes/legacy/class-wc-cardpay-solutions-gateway.php (modified) (1 diff)
-
tags/2.0.19/readme.txt (modified) (2 diffs)
-
tags/2.0.19/woocommerce-cardpay-solutions.php (modified) (2 diffs)
-
trunk/includes/class-wc-cardpay-solutions-gateway.php (modified) (1 diff)
-
trunk/includes/legacy/class-wc-cardpay-solutions-gateway.php (modified) (1 diff)
-
trunk/readme.txt (modified) (2 diffs)
-
trunk/woocommerce-cardpay-solutions.php (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
high-risk-payments-for-woo/tags/2.0.19/includes/class-wc-cardpay-solutions-gateway.php
r2770792 r2859802 358 358 // Attempt to process the capture. 359 359 $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'] : ''; 361 361 $amount = $order->get_total(); 362 362 -
high-risk-payments-for-woo/tags/2.0.19/includes/legacy/class-wc-cardpay-solutions-gateway.php
r2770792 r2859802 351 351 // Attempt to process the capture. 352 352 $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'] : ''; 354 354 $amount = $order->get_total(); 355 355 -
high-risk-payments-for-woo/tags/2.0.19/readme.txt
r2828967 r2859802 4 4 Requires at least: 4.0 5 5 Tested up to: 6.1 6 Stable tag: 2.0.1 86 Stable tag: 2.0.19 7 7 License: GPLv3 or later 8 8 License URI: http://www.gnu.org/licenses/gpl-3.0.html … … 127 127 == Changelog == 128 128 129 = 2.0.19 = 130 131 * Fix PHP 8.1 bug 132 129 133 = 2.0.16 = 130 134 -
high-risk-payments-for-woo/tags/2.0.19/woocommerce-cardpay-solutions.php
r2828967 r2859802 4 4 * Plugin URI: http://www.cardpaymerchant.com/woocommerce?pid=317d5f0aa67f1638 5 5 * 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.1 86 * Version: 2.0.19 7 7 * Author: Cardpay Solutions, Inc. 8 8 * Author URI: http://www.cardpaymerchant.com/ … … 12 12 * Domain Path: /languages 13 13 * WC requires at least: 2.2.0 14 * WC tested up to: 7. 114 * WC tested up to: 7.3 15 15 * 16 16 * Copyright 2016 Cardpay Solutions, Inc. (email : sales@cardpaymerchant.com) -
high-risk-payments-for-woo/trunk/includes/class-wc-cardpay-solutions-gateway.php
r2770792 r2859802 358 358 // Attempt to process the capture. 359 359 $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'] : ''; 361 361 $amount = $order->get_total(); 362 362 -
high-risk-payments-for-woo/trunk/includes/legacy/class-wc-cardpay-solutions-gateway.php
r2770792 r2859802 351 351 // Attempt to process the capture. 352 352 $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'] : ''; 354 354 $amount = $order->get_total(); 355 355 -
high-risk-payments-for-woo/trunk/readme.txt
r2828967 r2859802 4 4 Requires at least: 4.0 5 5 Tested up to: 6.1 6 Stable tag: 2.0.1 86 Stable tag: 2.0.19 7 7 License: GPLv3 or later 8 8 License URI: http://www.gnu.org/licenses/gpl-3.0.html … … 127 127 == Changelog == 128 128 129 = 2.0.19 = 130 131 * Fix PHP 8.1 bug 132 129 133 = 2.0.16 = 130 134 -
high-risk-payments-for-woo/trunk/woocommerce-cardpay-solutions.php
r2828967 r2859802 4 4 * Plugin URI: http://www.cardpaymerchant.com/woocommerce?pid=317d5f0aa67f1638 5 5 * 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.1 86 * Version: 2.0.19 7 7 * Author: Cardpay Solutions, Inc. 8 8 * Author URI: http://www.cardpaymerchant.com/ … … 12 12 * Domain Path: /languages 13 13 * WC requires at least: 2.2.0 14 * WC tested up to: 7. 114 * WC tested up to: 7.3 15 15 * 16 16 * Copyright 2016 Cardpay Solutions, Inc. (email : sales@cardpaymerchant.com)
Note: See TracChangeset
for help on using the changeset viewer.