Plugin Directory

Changeset 2251174


Ignore:
Timestamp:
02/27/2020 07:17:18 AM (6 years ago)
Author:
Mofsy
Message:

Fix version: 3.0.1

Location:
wc-robokassa/trunk
Files:
1 added
3 edited

Legend:

Unmodified
Added
Removed
  • wc-robokassa/trunk/includes/class-wc-robokassa.php

    r2250976 r2251174  
    184184        do_action('wc_robokassa_gateway_init_before');
    185185
     186        if(class_exists('WC_Payment_Gateway') !== true)
     187        {
     188            $this->get_logger()->emergency('WC_Payment_Gateway not found');
     189        }
     190
    186191        add_filter('woocommerce_payment_gateways', array($this, 'add_wc_gateway_method'), 10);
    187192
     
    200205        }
    201206
    202         if(class_exists('WC_Payment_Gateway') !== true)
    203         {
    204             $this->get_logger()->emergency('WC_Payment_Gateway not found');
    205             return false;
    206         }
    207 
    208         add_action('init', array($this, 'wc_robokassa_gateway_init'), 10);
     207        add_action('init', array($this, 'wc_robokassa_gateway_init'), 5);
    209208
    210209        $this->load_plugin_text_domain();
  • wc-robokassa/trunk/readme.txt

    r2250976 r2251174  
    4646
    4747== Changelog ==
     48
     49= 3.0.1 =
     50* Fix: loading queue
    4851
    4952= 3.0.0 =
  • wc-robokassa/trunk/wc-robokassa.php

    r2250976 r2251174  
    44 * Description: Integration Robokassa in WooCommerce as payment gateway plugin.
    55 * Plugin URI: https://mofsy.ru/projects/wc-robokassa
    6  * Version: 3.0.0
     6 * Version: 3.0.1
    77 * WC requires at least: 3.0
    88 * WC tested up to: 3.9
Note: See TracChangeset for help on using the changeset viewer.