Plugin Directory

Changeset 2454125


Ignore:
Timestamp:
01/11/2021 08:18:35 PM (5 years ago)
Author:
wpconcierges
Message:

fixed issue with uncessary parameters on the postback_url

Location:
order-postback-woo/trunk
Files:
4 edited

Legend:

Unmodified
Added
Removed
  • order-postback-woo/trunk/README.txt

    r2454116 r2454125  
    55Requires at least: 3.1
    66Tested up to: 5.6
    7 Stable tag: 1.0.5
     7Stable tag: 1.0.6
    88Requires PHP: 5.6 or above
    99License: GPLv2 or later
     
    8383
    8484== Changelog ==
     85= 1.0.6 =
     86fixed removing uncessary variables on the post url
     87
    8588= 1.0.5 =
    8689fixed incoming outgoing variable issues if on version 1.0.3 ore 1.0.4
  • order-postback-woo/trunk/includes/class-order-postback-woo.php

    r2454116 r2454125  
    7171            $this->version = ORDER_POSTBACK_WOO_VERSION;
    7272        } else {
    73             $this->version = '1.0.5';
     73            $this->version = '1.0.6';
    7474        }
    7575        $this->plugin_name = $this->order_postback_woo = 'order-postback-woo';
  • order-postback-woo/trunk/order-postback-woo.php

    r2454116 r2454125  
    1717 * Plugin URI:        https://www.wpconcierges.com/plugins/order_postback_woo/
    1818 * Description:       This plugin sends your order information from your Woocomerce store as a key/value pair to any url of your choice, using either a POST or GET.  This is useful if you would like to store your orders or process orders outside of your Woocommerce store.
    19  * Version:           1.0.5
     19 * Version:           1.0.6
    2020 * Author:            WpConcierges
    2121 * Author URI:        https://www.wpconcierges.com/
     
    3838 * Rename this for your plugin and update it as you release new versions.
    3939 */
    40 define( 'ORDER_POSTBACK_WOO_VERSION', '1.0.5' );
     40define( 'ORDER_POSTBACK_WOO_VERSION', '1.0.6' );
    4141
    4242/**
  • order-postback-woo/trunk/public/class-order-postback-woo-public.php

    r2454121 r2454125  
    405405   
    406406    private function get_postback_params($fields){
    407         $field_unset = array('opw_url','opw_method','opw_key_values_number','opw_key_values_number_old','opw_link_id');
     407        $field_unset = array('opw_url','opw_method','opw_fire','opw_incoming_click_id','opw_outgoing_click_id','opw_key_values_number','opw_key_values_number_old','opw_link_id');
    408408        foreach($field_unset as $field){
    409409            unset($fields[$field]);
Note: See TracChangeset for help on using the changeset viewer.