The WP Remote WordPress Plugin - Version 4.57

Version Description

  • Fixed services data fetch bug
Download this release

Release Info

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

Code changes from version 4.56 to 4.57

Files changed (4) hide show
  1. callback/wings/watch.php +5 -5
  2. info.php +2 -2
  3. plugin.php +2 -2
  4. readme.txt +4 -1
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('WPRInfo')) :
10
  public $badgeinfo = 'wprbadge';
11
  public $ip_header_option = 'wpripheader';
12
  public $brand_option = 'wprbrand';
13
- public $version = '4.56';
14
  public $webpage = 'https://wpremote.com';
15
  public $appurl = 'https://app.wpremote.com';
16
  public $slug = 'wpremote/plugin.php';
@@ -140,4 +140,4 @@ if (!class_exists('WPRInfo')) :
140
  );
141
  }
142
  }
143
- endif;
10
  public $badgeinfo = 'wprbadge';
11
  public $ip_header_option = 'wpripheader';
12
  public $brand_option = 'wprbrand';
13
+ public $version = '4.57';
14
  public $webpage = 'https://wpremote.com';
15
  public $appurl = 'https://app.wpremote.com';
16
  public $slug = 'wpremote/plugin.php';
140
  );
141
  }
142
  }
143
+ endif;
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.56
9
  Network: True
10
  */
11
 
@@ -185,4 +185,4 @@ if ((array_key_exists('bvplugname', $_REQUEST)) && ($_REQUEST['bvplugname'] == "
185
  }
186
  }
187
 
188
- }
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.57
9
  Network: True
10
  */
11
 
185
  }
186
  }
187
 
188
+ }
readme.txt CHANGED
@@ -6,7 +6,7 @@ Donate link: https://app.wpremote.com/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
 
@@ -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.56 =
36
  * Fixed account listing bug in wp-admin
37
  * 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
 
32
  3. Sign up for an account at wpremote.com and add your site.
33
 
34
  == CHANGELOG ==
35
+ = 4.57 =
36
+ * Fixed services data fetch bug
37
+
38
  = 4.56 =
39
  * Fixed account listing bug in wp-admin
40
  * Handling Activity Log corner case error