Plugin Directory

Changeset 2346744


Ignore:
Timestamp:
07/26/2020 02:27:07 PM (6 years ago)
Author:
returnedx
Message:

tiny fix

Location:
orderbee/trunk
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • orderbee/trunk/README.txt

    r2346626 r2346744  
    44Requires at least: 4.0.1
    55Tested up to: 5.4.2
    6 Stable tag: 1.2.0
     6Stable tag: 1.2.1
    77License: GPLv2 or later
    88License URI: http://www.gnu.org/licenses/gpl-2.0.html
     
    3737
    3838== Changelog ==
     39
     40= 1.2.1 =
     41* Editing security issue
    3942
    4043= 1.2.0 =
  • orderbee/trunk/orderbee.php

    r2346626 r2346744  
    1717 * Plugin URI:        https://www.orderbee.be
    1818 * Description:       This plugin makes a fast and safe connection between your Woocommerce and OrderBee.
    19  * Version:           1.2.0
     19 * Version:           1.2.1
    2020 * Author:            OrderBee
    2121 * Author URI:        https://www.orderbee.be
     
    3535 * Rename this for your plugin and update it as you release new versions.
    3636 */
    37 define('ORDERBEE_VERSION', '1.2.0');
     37define('ORDERBEE_VERSION', '1.2.1');
    3838
    3939/**
     
    267267 */
    268268
     269if (!function_exists('obfrwc_push_product_to_server')) {
    269270    function obfrwc_push_product_to_server( $product_id ) {
    270271       
     
    332333    }
    333334    //add_action( 'save_post_product', 'obfrwc_push_product_to_server', 10, 1 );
    334     add_action('wp_insert_post', 'obfrwc_push_product_to_server', 99, 3);
     335    add_action('wp_insert_post', 'obfrwc_push_product_to_server', 10, 3);
     336}
    335337/**
    336338 * Notice when orderbee needs an update
Note: See TracChangeset for help on using the changeset viewer.