Changeset 2454125
- Timestamp:
- 01/11/2021 08:18:35 PM (5 years ago)
- Location:
- order-postback-woo/trunk
- Files:
-
- 4 edited
-
README.txt (modified) (2 diffs)
-
includes/class-order-postback-woo.php (modified) (1 diff)
-
order-postback-woo.php (modified) (2 diffs)
-
public/class-order-postback-woo-public.php (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
order-postback-woo/trunk/README.txt
r2454116 r2454125 5 5 Requires at least: 3.1 6 6 Tested up to: 5.6 7 Stable tag: 1.0. 57 Stable tag: 1.0.6 8 8 Requires PHP: 5.6 or above 9 9 License: GPLv2 or later … … 83 83 84 84 == Changelog == 85 = 1.0.6 = 86 fixed removing uncessary variables on the post url 87 85 88 = 1.0.5 = 86 89 fixed 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 71 71 $this->version = ORDER_POSTBACK_WOO_VERSION; 72 72 } else { 73 $this->version = '1.0. 5';73 $this->version = '1.0.6'; 74 74 } 75 75 $this->plugin_name = $this->order_postback_woo = 'order-postback-woo'; -
order-postback-woo/trunk/order-postback-woo.php
r2454116 r2454125 17 17 * Plugin URI: https://www.wpconcierges.com/plugins/order_postback_woo/ 18 18 * 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. 519 * Version: 1.0.6 20 20 * Author: WpConcierges 21 21 * Author URI: https://www.wpconcierges.com/ … … 38 38 * Rename this for your plugin and update it as you release new versions. 39 39 */ 40 define( 'ORDER_POSTBACK_WOO_VERSION', '1.0. 5' );40 define( 'ORDER_POSTBACK_WOO_VERSION', '1.0.6' ); 41 41 42 42 /** -
order-postback-woo/trunk/public/class-order-postback-woo-public.php
r2454121 r2454125 405 405 406 406 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'); 408 408 foreach($field_unset as $field){ 409 409 unset($fields[$field]);
Note: See TracChangeset
for help on using the changeset viewer.