WordPress Backup & Security Plugin – BlogVault - Version 4.57

Version Description

  • Fixed services data fetch bug
Download this release

Release Info

Developer ritesh.soni36
Plugin Icon 128x128 WordPress Backup & Security Plugin – BlogVault
Version 4.57
Comparing to
See all releases

Code changes from version 4.56 to 4.57

Files changed (4) hide show
  1. blogvault.php +2 -2
  2. callback/wings/watch.php +5 -5
  3. info.php +2 -2
  4. readme.txt +4 -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.56
9
  Network: True
10
  */
11
 
@@ -177,4 +177,4 @@ if ((array_key_exists('bvplugname', $_REQUEST)) && ($_REQUEST['bvplugname'] == "
177
  }
178
  }
179
 
180
- }
5
  Description: Easiest way to backup & secure your WordPress site
6
  Author: Backup by BlogVault
7
  Author URI: https://blogvault.net
8
+ Version: 4.57
9
  Network: True
10
  */
11
 
177
  }
178
  }
179
 
180
+ }
callback/wings/watch.php CHANGED
@@ -91,7 +91,7 @@ class BVWatchCallback extends BVCallbackBase {
91
  if (array_key_exists('lp', $params)) {
92
  require_once dirname( __FILE__ ) . '/../../protect/wp/lp/config.php';
93
  $lp_params = $params['lp'];
94
- if (!$lp_params['check_table'] || $db->isTablePresent(BVWPLPConfig::$requests_table)) {
95
  $limit = intval(urldecode($lp_params['limit']));
96
  $filter = urldecode($lp_params['filter']);
97
  $db->deleteBVTableContent(BVWPLPConfig::$requests_table, $lp_params['rmfilter']);
@@ -110,7 +110,7 @@ class BVWatchCallback extends BVCallbackBase {
110
  if (array_key_exists('fw', $params)) {
111
  require_once dirname( __FILE__ ) . '/../../protect/fw/config.php';
112
  $fw_params = $params['fw'];
113
- if (!$fw_params['check_table'] || $db->isTablePresent(BVFWConfig::$requests_table)) {
114
  $limit = intval(urldecode($fw_params['limit']));
115
  $filter = urldecode($fw_params['filter']);
116
  $db->deleteBVTableContent(BVFWConfig::$requests_table, $fw_params['rmfilter']);
@@ -125,7 +125,7 @@ class BVWatchCallback extends BVCallbackBase {
125
  require_once dirname( __FILE__ ) . '/../../wp_dynsync.php';
126
  $isdynsyncactive = $settings->getOption('bvDynSyncActive');
127
  if ($isdynsyncactive == 'yes') {
128
- if (!$params['check_table'] || $db->isTablePresent(BVWPDynSync::$dynsync_table)) {
129
  $limit = intval(urldecode($params['limit']));
130
  $filter = urldecode($params['filter']);
131
  $this->deleteBvDynamicEvents($params['rmfilter']);
@@ -142,7 +142,7 @@ class BVWatchCallback extends BVCallbackBase {
142
  if (array_key_exists('actlog', $params)) {
143
  require_once dirname( __FILE__ ) . '/../../wp_actlog.php';
144
  $actlog_params = $params['actlog'];
145
- if (!$actlog_params['check_table'] || $db->isTablePresent(BVWPActLog::$actlog_table)) {
146
  $limit = intval(urldecode($actlog_params['limit']));
147
  $filter = urldecode($actlog_params['filter']);
148
  $db->deleteBVTableContent(BVWPActLog::$actlog_table, $actlog_params['rmfilter']);
@@ -166,4 +166,4 @@ class BVWatchCallback extends BVCallbackBase {
166
  return $resp;
167
  }
168
  }
169
- endif;
91
  if (array_key_exists('lp', $params)) {
92
  require_once dirname( __FILE__ ) . '/../../protect/wp/lp/config.php';
93
  $lp_params = $params['lp'];
94
+ if (!isset($lp_params['bv_check_table']) || $db->isTablePresent($db->getBVTable(BVWPLPConfig::$requests_table))) {
95
  $limit = intval(urldecode($lp_params['limit']));
96
  $filter = urldecode($lp_params['filter']);
97
  $db->deleteBVTableContent(BVWPLPConfig::$requests_table, $lp_params['rmfilter']);
110
  if (array_key_exists('fw', $params)) {
111
  require_once dirname( __FILE__ ) . '/../../protect/fw/config.php';
112
  $fw_params = $params['fw'];
113
+ if (!isset($fw_params['bv_check_table']) || $db->isTablePresent($db->getBVTable(BVFWConfig::$requests_table))) {
114
  $limit = intval(urldecode($fw_params['limit']));
115
  $filter = urldecode($fw_params['filter']);
116
  $db->deleteBVTableContent(BVFWConfig::$requests_table, $fw_params['rmfilter']);
125
  require_once dirname( __FILE__ ) . '/../../wp_dynsync.php';
126
  $isdynsyncactive = $settings->getOption('bvDynSyncActive');
127
  if ($isdynsyncactive == 'yes') {
128
+ if (!isset($params['bv_check_table']) || $db->isTablePresent($db->getBVTable(BVWPDynSync::$dynsync_table))) {
129
  $limit = intval(urldecode($params['limit']));
130
  $filter = urldecode($params['filter']);
131
  $this->deleteBvDynamicEvents($params['rmfilter']);
142
  if (array_key_exists('actlog', $params)) {
143
  require_once dirname( __FILE__ ) . '/../../wp_actlog.php';
144
  $actlog_params = $params['actlog'];
145
+ if (!isset($actlog_params['bv_check_table']) || $db->isTablePresent($db->getBVTable(BVWPActLog::$actlog_table))) {
146
  $limit = intval(urldecode($actlog_params['limit']));
147
  $filter = urldecode($actlog_params['filter']);
148
  $db->deleteBVTableContent(BVWPActLog::$actlog_table, $actlog_params['rmfilter']);
166
  return $resp;
167
  }
168
  }
169
+ endif;
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.56';
14
  public $webpage = 'https://blogvault.net';
15
  public $appurl = 'https://app.blogvault.net';
16
  public $slug = 'blogvault-real-time-backup/blogvault.php';
@@ -140,4 +140,4 @@ if (!class_exists('BVInfo')) :
140
  );
141
  }
142
  }
143
- endif;
10
  public $badgeinfo = 'bvbadge';
11
  public $ip_header_option = 'bvipheader';
12
  public $brand_option = 'bvbrand';
13
+ public $version = '4.57';
14
  public $webpage = 'https://blogvault.net';
15
  public $appurl = 'https://app.blogvault.net';
16
  public $slug = 'blogvault-real-time-backup/blogvault.php';
140
  );
141
  }
142
  }
143
+ endif;
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: 5.7
8
  Requires PHP: 5.4.0
9
- Stable tag: 4.56
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
 
@@ -247,6 +247,9 @@ These are available on our website: [Terms of Service](https://blogvault.net/tos
247
  9. We power WordPress migration for WPEngine, Pantheon, FlyWheel, LiquidWeb, Cloudways, Savvii and many more. Need we say more?
248
 
249
  == CHANGELOG ==
 
 
 
250
  = 4.56 =
251
  * Fixed account listing bug in wp-admin
252
  * Handling Activity Log corner case error
6
  Requires at least: 4.0
7
  Tested up to: 5.7
8
  Requires PHP: 5.4.0
9
+ Stable tag: 4.57
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
 
247
  9. We power WordPress migration for WPEngine, Pantheon, FlyWheel, LiquidWeb, Cloudways, Savvii and many more. Need we say more?
248
 
249
  == CHANGELOG ==
250
+ = 4.57 =
251
+ * Fixed services data fetch bug
252
+
253
  = 4.56 =
254
  * Fixed account listing bug in wp-admin
255
  * Handling Activity Log corner case error