Plugin Directory

Changeset 2224331


Ignore:
Timestamp:
01/08/2020 02:25:52 PM (6 years ago)
Author:
putler
Message:

Changes for 2.9.13.1

Location:
woocommerce-putler-connector/trunk
Files:
4 edited

Legend:

Unmodified
Added
Removed
  • woocommerce-putler-connector/trunk/classes/class.putler-connector-woocommerce.php

    r2224255 r2224331  
    2828            if ( is_admin() ) {
    2929                add_action( 'before_delete_post', array( &$this, 'delete_post' ), 9, 1 );
    30                 add_action( 'wp_ajax_wpc_get_plugin_info', array( &$this, 'get_plugin_info' ) );
    31             }
    32 
    33             add_action( 'wp_ajax_nopriv_wpc_get_plugin_info', array( &$this, 'get_plugin_info' ) );
     30            }
    3431
    3532        }
     
    17611758            return $params;
    17621759        }
    1763 
    1764         public function get_plugin_info() {
    1765 
    1766             $data = array(
    1767                 'wpc_version' => WPC_VERSION,
    1768                 'wc_version'  => WOOCOMMERCE_VERSION
    1769             );
    1770 
    1771             die( json_encode( $data ) );
    1772         }
    1773 
    17741760    }
    17751761}
  • woocommerce-putler-connector/trunk/classes/class.putler-connector.php

    r2224255 r2224331  
    8585                }
    8686            }
     87        }
     88
     89        public function get_plugin_info() {
     90
     91            $data = array(
     92                'wpc_version' => WPC_VERSION,
     93                'wc_version'  => WOOCOMMERCE_VERSION
     94            );
     95
     96            die( json_encode( $data ) );
    8797        }
    8898
  • woocommerce-putler-connector/trunk/readme.txt

    r2224255 r2224331  
    88Tested up to: 5.3.2
    99Requires PHP: 5.6+
    10 Stable tag: 2.9.13
     10Stable tag: 2.9.13.1
    1111License: GPL 3.0
    1212
     
    172172== Changelog ==
    173173
     174= 2.9.13.1 (08.01.2020) =
     175* Fixed: Important fixes related to Authentication Process
     176
    174177= 2.9.13 (08.01.2020) =
    175178* Update: Changes in the Authentication Process
     
    284287== Upgrade Notice ==
    285288
     289= 2.9.13.1 =
     290Important fixes related to Authentication Process, recommended upgrade.
     291
    286292= 2.9.13 =
    287293Updates related to Authentication Process along with some important updates and fixes, recommended upgrade.
  • woocommerce-putler-connector/trunk/woocommerce-putler-connector.php

    r2224255 r2224331  
    44 * Plugin URI:        https://putler.com/connector/woocommerce/
    55 * Description:       Accurate reports, analytics, integrations, growth insights and tools for your WooCommerce store.
    6  * Version:           2.9.13
     6 * Version:           2.9.13.1
    77 * Author:            putler, storeapps
    88 * Author URI:        https://putler.com/
     
    1818}
    1919
    20 define( 'WPC_VERSION', '2.9.12' );
     20define( 'WPC_VERSION', '2.9.13.1' );
    2121
    2222//Hooks
Note: See TracChangeset for help on using the changeset viewer.