The WP Remote WordPress Plugin - Version 4.84

Version Description

  • Bug fix: Handling WooCommerce update order hook
Download this release

Release Info

Developer ritesh.soni36
Plugin Icon 128x128 The WP Remote WordPress Plugin
Version 4.84
Comparing to
See all releases

Code changes from version 4.83 to 4.84

Files changed (4) hide show
  1. info.php +1 -1
  2. plugin.php +1 -1
  3. readme.txt +4 -1
  4. wp_dynsync.php +1 -1
info.php CHANGED
@@ -10,7 +10,7 @@ if (!class_exists('WPRInfo')) :
10
  public $badgeinfo = 'wprbadge';
11
  public $ip_header_option = 'wpripheader';
12
  public $brand_option = 'wprbrand';
13
- public $version = '4.83';
14
  public $webpage = 'https://wpremote.com';
15
  public $appurl = 'https://app.wpremote.com';
16
  public $slug = 'wpremote/plugin.php';
10
  public $badgeinfo = 'wprbadge';
11
  public $ip_header_option = 'wpripheader';
12
  public $brand_option = 'wprbrand';
13
+ public $version = '4.84';
14
  public $webpage = 'https://wpremote.com';
15
  public $appurl = 'https://app.wpremote.com';
16
  public $slug = 'wpremote/plugin.php';
plugin.php CHANGED
@@ -5,7 +5,7 @@ Plugin URI: https://wpremote.com
5
  Description: Manage your WordPress site with <a href="https://wpremote.com/">WP Remote</a>.
6
  Author: WP Remote
7
  Author URI: https://wpremote.com
8
- Version: 4.83
9
  Network: True
10
  */
11
 
5
  Description: Manage your WordPress site with <a href="https://wpremote.com/">WP Remote</a>.
6
  Author: WP Remote
7
  Author URI: https://wpremote.com
8
+ Version: 4.84
9
  Network: True
10
  */
11
 
readme.txt CHANGED
@@ -6,7 +6,7 @@ Donate link: https://wpremote.com/
6
  Requires at least: 4.0
7
  Tested up to: 6.1
8
  Requires PHP: 5.4.0
9
- Stable tag: 4.83
10
  License: GPLv2 or later
11
  License URI: [http://www.gnu.org/licenses/gpl-2.0.html](http://www.gnu.org/licenses/gpl-2.0.html)
12
 
@@ -32,6 +32,9 @@ You can email us at support@wpremote.com for support.
32
  3. Sign up for an account at wpremote.com and add your site.
33
 
34
  == CHANGELOG ==
 
 
 
35
  = 4.83 =
36
  * Geo-blocking with advanced firewall
37
  * Activity log improvements and bug fixes
6
  Requires at least: 4.0
7
  Tested up to: 6.1
8
  Requires PHP: 5.4.0
9
+ Stable tag: 4.84
10
  License: GPLv2 or later
11
  License URI: [http://www.gnu.org/licenses/gpl-2.0.html](http://www.gnu.org/licenses/gpl-2.0.html)
12
 
32
  3. Sign up for an account at wpremote.com and add your site.
33
 
34
  == CHANGELOG ==
35
+ = 4.84 =
36
+ * Bug fix: Handling WooCommerce update order hook
37
+
38
  = 4.83 =
39
  * Geo-blocking with advanced firewall
40
  * Activity log improvements and bug fixes
wp_dynsync.php CHANGED
@@ -267,7 +267,7 @@ class BVWPDynSync {
267
  }
268
  }
269
 
270
- function woocommerce_update_order_handler($order_id, $order) {
271
  $this->add_db_event('wc_orders', array('id' => $order_id));
272
  $this->add_db_event('wc_orders_meta', array('order_id' => $order_id));
273
  $this->add_db_event('wc_order_addresses', array('order_id' => $order_id));
267
  }
268
  }
269
 
270
+ function woocommerce_update_order_handler($order_id, $order = null) {
271
  $this->add_db_event('wc_orders', array('id' => $order_id));
272
  $this->add_db_event('wc_orders_meta', array('order_id' => $order_id));
273
  $this->add_db_event('wc_order_addresses', array('order_id' => $order_id));