Plugin Directory

Changeset 2675967


Ignore:
Timestamp:
02/09/2022 07:52:12 PM (4 years ago)
Author:
rexak
Message:

fix private method called from woo hook

Location:
cardconnect-payment-module
Files:
6 edited
1 copied

Legend:

Unmodified
Added
Removed
  • cardconnect-payment-module/tags/3.4.14/cardconnect-payment-gateway.php

    r2673140 r2675967  
    44     * Plugin URI: https://wordpress.org/plugins/cardconnect-payment-module
    55     * Description: Accept credit card payments in your WooCommerce store.
    6      * Version: 3.4.12
     6     * Version: 3.4.14
    77     * Author: Fiserv <nicole.anderson@fiserv.com>
    88     * Author URI: https://cardconnect.com
     
    1313     * WC tested up to: 6.1.1
    1414     *
    15      * @version 3.4.12
     15     * @version 3.4.14
    1616     * @author  CardPointe/RexAK
    1717     */
     
    2525    }
    2626
    27     define('WC_CARDCONNECT_VER', '3.4.12');
     27    define('WC_CARDCONNECT_VER', '3.4.14');
    2828    define('WC_CARDCONNECT_PLUGIN_PATH', untrailingslashit(plugin_basename(__DIR__)));
    2929    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  
    114114        }
    115115
    116         private function reset_user_session() {
     116        public function reset_user_session() {
    117117            WC()->session->set('cardPointe-hammer', null);
    118118        }
     
    158158
    159159
    160         function bc_validate_timings($fields, $validation_errors) {
     160        public function bc_validate_timings($fields, $validation_errors) {
    161161            // if other plugin throw an error, defer to them first
    162162            if (isset($validation_errors->errors) && !empty($validation_errors->errors)) {
  • cardconnect-payment-module/tags/3.4.14/readme.txt

    r2673140 r2675967  
    55Tested up to: 5.9
    66Requires PHP: 7.1
    7 Stable tag: 3.4.12
     7Stable tag: 3.4.14
    88License: GPLv2 or later
    99License URI: http://www.gnu.org/licenses/gpl-2.0.html
     
    132132
    133133== Changelog ==
     134= 3.4.14 =
     135* fix: private method called under woo hook
     136
    134137= 3.4.12 =
    135138* fix: delete card button esc fix
  • cardconnect-payment-module/trunk/cardconnect-payment-gateway.php

    r2673140 r2675967  
    44     * Plugin URI: https://wordpress.org/plugins/cardconnect-payment-module
    55     * Description: Accept credit card payments in your WooCommerce store.
    6      * Version: 3.4.12
     6     * Version: 3.4.14
    77     * Author: Fiserv <nicole.anderson@fiserv.com>
    88     * Author URI: https://cardconnect.com
     
    1313     * WC tested up to: 6.1.1
    1414     *
    15      * @version 3.4.12
     15     * @version 3.4.14
    1616     * @author  CardPointe/RexAK
    1717     */
     
    2525    }
    2626
    27     define('WC_CARDCONNECT_VER', '3.4.12');
     27    define('WC_CARDCONNECT_VER', '3.4.14');
    2828    define('WC_CARDCONNECT_PLUGIN_PATH', untrailingslashit(plugin_basename(__DIR__)));
    2929    define('WC_CARDCONNECT_ASSETS_URL', untrailingslashit(plugin_dir_url(__FILE__)) . '/assets/');
  • cardconnect-payment-module/trunk/classes/class-wc-gateway-cardconnect.php

    r2673140 r2675967  
    114114        }
    115115
    116         private function reset_user_session() {
     116        public function reset_user_session() {
    117117            WC()->session->set('cardPointe-hammer', null);
    118118        }
     
    158158
    159159
    160         function bc_validate_timings($fields, $validation_errors) {
     160        public function bc_validate_timings($fields, $validation_errors) {
    161161            // if other plugin throw an error, defer to them first
    162162            if (isset($validation_errors->errors) && !empty($validation_errors->errors)) {
  • cardconnect-payment-module/trunk/readme.txt

    r2673140 r2675967  
    55Tested up to: 5.9
    66Requires PHP: 7.1
    7 Stable tag: 3.4.12
     7Stable tag: 3.4.14
    88License: GPLv2 or later
    99License URI: http://www.gnu.org/licenses/gpl-2.0.html
     
    132132
    133133== Changelog ==
     134= 3.4.14 =
     135* fix: private method called under woo hook
     136
    134137= 3.4.12 =
    135138* fix: delete card button esc fix
Note: See TracChangeset for help on using the changeset viewer.