The WP Remote WordPress Plugin - Version 4.66

Version Description

  • Post type fetch improvement.
  • Handing wing version for ipstore wing.
Download this release

Release Info

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

Code changes from version 4.65 to 4.66

callback/wings/ipstore.php CHANGED
@@ -8,6 +8,8 @@ require_once dirname( __FILE__ ) . '/../../protect/wp/ipstore.php';
8
  class BVIPStoreCallback extends BVCallbackBase {
9
  public $db;
10
 
 
 
11
  public function __construct($callback_handler) {
12
  $this->db = $callback_handler->db;
13
  }
8
  class BVIPStoreCallback extends BVCallbackBase {
9
  public $db;
10
 
11
+ const IPSTORE_WING_VERSION = 1.0;
12
+
13
  public function __construct($callback_handler) {
14
  $this->db = $callback_handler->db;
15
  }
callback/wings/misc.php CHANGED
@@ -68,7 +68,7 @@ class BVMiscCallback extends BVCallbackBase {
68
  AND post_status='publish' ORDER BY post_date DESC ) AS posts GROUP BY post_type";
69
  $posts = $this->db->getResult($post_query);
70
  foreach ( $posts as $key => $post ) {
71
- $posts[$key]['url'] = get_permalink($post);
72
  }
73
  $result['posts'] = $posts;
74
  return $result;
68
  AND post_status='publish' ORDER BY post_date DESC ) AS posts GROUP BY post_type";
69
  $posts = $this->db->getResult($post_query);
70
  foreach ( $posts as $key => $post ) {
71
+ $posts[$key]['url'] = get_permalink($post['ID']);
72
  }
73
  $result['posts'] = $posts;
74
  return $result;
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.65';
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.66';
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.65
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.66
9
  Network: True
10
  */
11
 
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.8
8
  Requires PHP: 5.4.0
9
- Stable tag: 4.65
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,10 @@ 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.65 =
36
  * Making Login Protection more configurable.
37
  * Robust handling of requests params.
6
  Requires at least: 4.0
7
  Tested up to: 5.8
8
  Requires PHP: 5.4.0
9
+ Stable tag: 4.66
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.66 =
36
+ * Post type fetch improvement.
37
+ * Handing wing version for ipstore wing.
38
+
39
  = 4.65 =
40
  * Making Login Protection more configurable.
41
  * Robust handling of requests params.