Changeset 2859792
- Timestamp:
- 02/03/2023 06:28:19 PM (3 years ago)
- Location:
- fd-payments-for-woo
- Files:
-
- 8 edited
- 1 copied
-
tags/2.0.20 (copied) (copied from fd-payments-for-woo/trunk)
-
tags/2.0.20/includes/class-wc-payeezy-gateway.php (modified) (1 diff)
-
tags/2.0.20/includes/legacy/class-wc-payeezy-gateway.php (modified) (1 diff)
-
tags/2.0.20/readme.txt (modified) (2 diffs)
-
tags/2.0.20/woocommerce-payeezy.php (modified) (2 diffs)
-
trunk/includes/class-wc-payeezy-gateway.php (modified) (1 diff)
-
trunk/includes/legacy/class-wc-payeezy-gateway.php (modified) (1 diff)
-
trunk/readme.txt (modified) (2 diffs)
-
trunk/woocommerce-payeezy.php (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
fd-payments-for-woo/tags/2.0.20/includes/class-wc-payeezy-gateway.php
r2771212 r2859792 358 358 // Attempt to process the capture. 359 359 $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'] : ''; 361 361 $amount = $order->get_total(); 362 362 -
fd-payments-for-woo/tags/2.0.20/includes/legacy/class-wc-payeezy-gateway.php
r2828965 r2859792 351 351 // Attempt to process the capture. 352 352 $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'] : ''; 354 354 $amount = $order->get_total(); 355 355 -
fd-payments-for-woo/tags/2.0.20/readme.txt
r2828965 r2859792 4 4 Requires at least: 4.0 5 5 Tested up to: 6.1 6 Stable tag: 2.0. 196 Stable tag: 2.0.20 7 7 License: GPLv3 or later 8 8 License URI: http://www.gnu.org/licenses/gpl-3.0.html … … 114 114 == Changelog == 115 115 116 = 2.0.20 = 117 118 * Fix PHP 8.1 bug 119 116 120 = 2.0.18 = 117 121 -
fd-payments-for-woo/tags/2.0.20/woocommerce-payeezy.php
r2828965 r2859792 4 4 * Plugin URI: http://www.cardpaysolutions.com/woocommerce?pid=83cf9aa647bc5b4e 5 5 * 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. 196 * Version: 2.0.20 7 7 * Author: Cardpay Solutions, Inc. 8 8 * Author URI: http://www.cardpaysolutions.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@cardpaysolutions.com) -
fd-payments-for-woo/trunk/includes/class-wc-payeezy-gateway.php
r2771212 r2859792 358 358 // Attempt to process the capture. 359 359 $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'] : ''; 361 361 $amount = $order->get_total(); 362 362 -
fd-payments-for-woo/trunk/includes/legacy/class-wc-payeezy-gateway.php
r2828965 r2859792 351 351 // Attempt to process the capture. 352 352 $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'] : ''; 354 354 $amount = $order->get_total(); 355 355 -
fd-payments-for-woo/trunk/readme.txt
r2828965 r2859792 4 4 Requires at least: 4.0 5 5 Tested up to: 6.1 6 Stable tag: 2.0. 196 Stable tag: 2.0.20 7 7 License: GPLv3 or later 8 8 License URI: http://www.gnu.org/licenses/gpl-3.0.html … … 114 114 == Changelog == 115 115 116 = 2.0.20 = 117 118 * Fix PHP 8.1 bug 119 116 120 = 2.0.18 = 117 121 -
fd-payments-for-woo/trunk/woocommerce-payeezy.php
r2828965 r2859792 4 4 * Plugin URI: http://www.cardpaysolutions.com/woocommerce?pid=83cf9aa647bc5b4e 5 5 * 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. 196 * Version: 2.0.20 7 7 * Author: Cardpay Solutions, Inc. 8 8 * Author URI: http://www.cardpaysolutions.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@cardpaysolutions.com)
Note: See TracChangeset
for help on using the changeset viewer.