MalCare WordPress Security Plugin – Malware Scanner, Cleaner, Security Firewall - Version 4.84

Version Description

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

Release Info

Developer ritesh.soni36
Plugin Icon 128x128 MalCare WordPress Security Plugin – Malware Scanner, Cleaner, Security Firewall
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. malcare.php +1 -1
  3. readme.txt +4 -1
  4. wp_dynsync.php +1 -1
info.php CHANGED
@@ -10,7 +10,7 @@ if (!class_exists('MCInfo')) :
10
  public $badgeinfo = 'mcbadge';
11
  public $ip_header_option = 'mcipheader';
12
  public $brand_option = 'mcbrand';
13
- public $version = '4.83';
14
  public $webpage = 'https://www.malcare.com';
15
  public $appurl = 'https://app.malcare.com';
16
  public $slug = 'malcare-security/malcare.php';
10
  public $badgeinfo = 'mcbadge';
11
  public $ip_header_option = 'mcipheader';
12
  public $brand_option = 'mcbrand';
13
+ public $version = '4.84';
14
  public $webpage = 'https://www.malcare.com';
15
  public $appurl = 'https://app.malcare.com';
16
  public $slug = 'malcare-security/malcare.php';
malcare.php CHANGED
@@ -5,7 +5,7 @@ Plugin URI: https://www.malcare.com
5
  Description: MalCare WordPress Security Plugin - Malware Scanner, Cleaner, Security Firewall
6
  Author: MalCare Security
7
  Author URI: https://www.malcare.com
8
- Version: 4.83
9
  Network: True
10
  */
11
 
5
  Description: MalCare WordPress Security Plugin - Malware Scanner, Cleaner, Security Firewall
6
  Author: MalCare Security
7
  Author URI: https://www.malcare.com
8
+ Version: 4.84
9
  Network: True
10
  */
11
 
readme.txt CHANGED
@@ -6,7 +6,7 @@ Donate link: https://www.malcare.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
 
@@ -396,6 +396,9 @@ These are available on our website: [Terms of Service](https://www.malcare.com/t
396
  8. MalCare’s Uptime Monitoring notifies if a website goes down so that you can handle the situation before starting to lose visitors.
397
 
398
  == CHANGELOG ==
 
 
 
399
  = 4.83 =
400
  * Geo-blocking with advanced firewall
401
  * 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
 
396
  8. MalCare’s Uptime Monitoring notifies if a website goes down so that you can handle the situation before starting to lose visitors.
397
 
398
  == CHANGELOG ==
399
+ = 4.84 =
400
+ * Bug fix: Handling WooCommerce update order hook
401
+
402
  = 4.83 =
403
  * Geo-blocking with advanced firewall
404
  * 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));