Version Description
- Bug fix: Handling WooCommerce update order hook
Download this release
Release Info
Developer | ritesh.soni36 |
Plugin | WordPress Backup & Security Plugin – BlogVault |
Version | 4.84 |
Comparing to | |
See all releases |
Code changes from version 4.83 to 4.84
- blogvault.php +1 -1
- info.php +1 -1
- readme.txt +4 -1
- wp_dynsync.php +1 -1
blogvault.php
CHANGED
@@ -5,7 +5,7 @@ Plugin URI: https://blogvault.net
|
|
5 |
Description: Easiest way to backup & secure your WordPress site
|
6 |
Author: Backup by BlogVault
|
7 |
Author URI: https://blogvault.net
|
8 |
-
Version: 4.
|
9 |
Network: True
|
10 |
*/
|
11 |
|
5 |
Description: Easiest way to backup & secure your WordPress site
|
6 |
Author: Backup by BlogVault
|
7 |
Author URI: https://blogvault.net
|
8 |
+
Version: 4.84
|
9 |
Network: True
|
10 |
*/
|
11 |
|
info.php
CHANGED
@@ -10,7 +10,7 @@ if (!class_exists('BVInfo')) :
|
|
10 |
public $badgeinfo = 'bvbadge';
|
11 |
public $ip_header_option = 'bvipheader';
|
12 |
public $brand_option = 'bvbrand';
|
13 |
-
public $version = '4.
|
14 |
public $webpage = 'https://blogvault.net';
|
15 |
public $appurl = 'https://app.blogvault.net';
|
16 |
public $slug = 'blogvault-real-time-backup/blogvault.php';
|
10 |
public $badgeinfo = 'bvbadge';
|
11 |
public $ip_header_option = 'bvipheader';
|
12 |
public $brand_option = 'bvbrand';
|
13 |
+
public $version = '4.84';
|
14 |
public $webpage = 'https://blogvault.net';
|
15 |
public $appurl = 'https://app.blogvault.net';
|
16 |
public $slug = 'blogvault-real-time-backup/blogvault.php';
|
readme.txt
CHANGED
@@ -6,7 +6,7 @@ Donate link: https://app.blogvault.net/home/signup
|
|
6 |
Requires at least: 4.0
|
7 |
Tested up to: 6.1
|
8 |
Requires PHP: 5.4.0
|
9 |
-
Stable tag: 4.
|
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 |
|
@@ -252,6 +252,9 @@ These are available on our website: [Terms of Service](https://blogvault.net/tos
|
|
252 |
9. We power WordPress migration for WPEngine, Pantheon, FlyWheel, LiquidWeb, Cloudways, Savvii, and many more. Need we say more?
|
253 |
|
254 |
== CHANGELOG ==
|
|
|
|
|
|
|
255 |
= 4.83 =
|
256 |
* Geo-blocking with advanced firewall
|
257 |
* 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 |
|
252 |
9. We power WordPress migration for WPEngine, Pantheon, FlyWheel, LiquidWeb, Cloudways, Savvii, and many more. Need we say more?
|
253 |
|
254 |
== CHANGELOG ==
|
255 |
+
= 4.84 =
|
256 |
+
* Bug fix: Handling WooCommerce update order hook
|
257 |
+
|
258 |
= 4.83 =
|
259 |
* Geo-blocking with advanced firewall
|
260 |
* 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));
|