Changeset 2675967
- Timestamp:
- 02/09/2022 07:52:12 PM (4 years ago)
- Location:
- cardconnect-payment-module
- Files:
-
- 6 edited
- 1 copied
-
tags/3.4.14 (copied) (copied from cardconnect-payment-module/trunk)
-
tags/3.4.14/cardconnect-payment-gateway.php (modified) (3 diffs)
-
tags/3.4.14/classes/class-wc-gateway-cardconnect.php (modified) (2 diffs)
-
tags/3.4.14/readme.txt (modified) (2 diffs)
-
trunk/cardconnect-payment-gateway.php (modified) (3 diffs)
-
trunk/classes/class-wc-gateway-cardconnect.php (modified) (2 diffs)
-
trunk/readme.txt (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
cardconnect-payment-module/tags/3.4.14/cardconnect-payment-gateway.php
r2673140 r2675967 4 4 * Plugin URI: https://wordpress.org/plugins/cardconnect-payment-module 5 5 * Description: Accept credit card payments in your WooCommerce store. 6 * Version: 3.4.1 26 * Version: 3.4.14 7 7 * Author: Fiserv <nicole.anderson@fiserv.com> 8 8 * Author URI: https://cardconnect.com … … 13 13 * WC tested up to: 6.1.1 14 14 * 15 * @version 3.4.1 215 * @version 3.4.14 16 16 * @author CardPointe/RexAK 17 17 */ … … 25 25 } 26 26 27 define('WC_CARDCONNECT_VER', '3.4.1 2');27 define('WC_CARDCONNECT_VER', '3.4.14'); 28 28 define('WC_CARDCONNECT_PLUGIN_PATH', untrailingslashit(plugin_basename(__DIR__))); 29 29 define('WC_CARDCONNECT_ASSETS_URL', untrailingslashit(plugin_dir_url(__FILE__)) . '/assets/'); -
cardconnect-payment-module/tags/3.4.14/classes/class-wc-gateway-cardconnect.php
r2673140 r2675967 114 114 } 115 115 116 p rivatefunction reset_user_session() {116 public function reset_user_session() { 117 117 WC()->session->set('cardPointe-hammer', null); 118 118 } … … 158 158 159 159 160 function bc_validate_timings($fields, $validation_errors) {160 public function bc_validate_timings($fields, $validation_errors) { 161 161 // if other plugin throw an error, defer to them first 162 162 if (isset($validation_errors->errors) && !empty($validation_errors->errors)) { -
cardconnect-payment-module/tags/3.4.14/readme.txt
r2673140 r2675967 5 5 Tested up to: 5.9 6 6 Requires PHP: 7.1 7 Stable tag: 3.4.1 27 Stable tag: 3.4.14 8 8 License: GPLv2 or later 9 9 License URI: http://www.gnu.org/licenses/gpl-2.0.html … … 132 132 133 133 == Changelog == 134 = 3.4.14 = 135 * fix: private method called under woo hook 136 134 137 = 3.4.12 = 135 138 * fix: delete card button esc fix -
cardconnect-payment-module/trunk/cardconnect-payment-gateway.php
r2673140 r2675967 4 4 * Plugin URI: https://wordpress.org/plugins/cardconnect-payment-module 5 5 * Description: Accept credit card payments in your WooCommerce store. 6 * Version: 3.4.1 26 * Version: 3.4.14 7 7 * Author: Fiserv <nicole.anderson@fiserv.com> 8 8 * Author URI: https://cardconnect.com … … 13 13 * WC tested up to: 6.1.1 14 14 * 15 * @version 3.4.1 215 * @version 3.4.14 16 16 * @author CardPointe/RexAK 17 17 */ … … 25 25 } 26 26 27 define('WC_CARDCONNECT_VER', '3.4.1 2');27 define('WC_CARDCONNECT_VER', '3.4.14'); 28 28 define('WC_CARDCONNECT_PLUGIN_PATH', untrailingslashit(plugin_basename(__DIR__))); 29 29 define('WC_CARDCONNECT_ASSETS_URL', untrailingslashit(plugin_dir_url(__FILE__)) . '/assets/'); -
cardconnect-payment-module/trunk/classes/class-wc-gateway-cardconnect.php
r2673140 r2675967 114 114 } 115 115 116 p rivatefunction reset_user_session() {116 public function reset_user_session() { 117 117 WC()->session->set('cardPointe-hammer', null); 118 118 } … … 158 158 159 159 160 function bc_validate_timings($fields, $validation_errors) {160 public function bc_validate_timings($fields, $validation_errors) { 161 161 // if other plugin throw an error, defer to them first 162 162 if (isset($validation_errors->errors) && !empty($validation_errors->errors)) { -
cardconnect-payment-module/trunk/readme.txt
r2673140 r2675967 5 5 Tested up to: 5.9 6 6 Requires PHP: 7.1 7 Stable tag: 3.4.1 27 Stable tag: 3.4.14 8 8 License: GPLv2 or later 9 9 License URI: http://www.gnu.org/licenses/gpl-2.0.html … … 132 132 133 133 == Changelog == 134 = 3.4.14 = 135 * fix: private method called under woo hook 136 134 137 = 3.4.12 = 135 138 * fix: delete card button esc fix
Note: See TracChangeset
for help on using the changeset viewer.