The WP Remote WordPress Plugin - Version 3.4

Version Description

  • Plugin branding fixes
Download this release

Release Info

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

Code changes from version 3.3 to 3.4

Files changed (4) hide show
  1. info.php +1 -1
  2. plugin.php +1 -1
  3. readme.txt +6 -2
  4. wp_admin.php +5 -0
info.php CHANGED
@@ -9,7 +9,7 @@ if (!class_exists('WPRInfo')) :
9
  public $badgeinfo = 'wprbadge';
10
  public $ip_header_option = 'wpripheader';
11
  public $brand_option = 'wprbrand';
12
- public $version = '3.3';
13
  public $webpage = 'https://wpremote.com';
14
  public $appurl = 'https://app.wpremote.com';
15
  public $slug = 'wpremote/plugin.php';
9
  public $badgeinfo = 'wprbadge';
10
  public $ip_header_option = 'wpripheader';
11
  public $brand_option = 'wprbrand';
12
+ public $version = '3.4';
13
  public $webpage = 'https://wpremote.com';
14
  public $appurl = 'https://app.wpremote.com';
15
  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: 3.3
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: 3.4
9
  Network: True
10
  */
11
 
readme.txt CHANGED
@@ -4,8 +4,9 @@ Tags: wpremote, remote administration, multiple wordpress, backup, wordpress bac
4
  Plugin URI: https://wpremote.com/
5
  Donate link: https://app.wpremote.com/home/signup
6
  Requires at least: 4.0
7
- Tested up to: 5.2.1
8
- Stable tag: 3.3
 
9
  License: GPLv2 or later
10
  License URI: [http://www.gnu.org/licenses/gpl-2.0.html](http://www.gnu.org/licenses/gpl-2.0.html)
11
 
@@ -31,6 +32,9 @@ You can email us at support@wpremote.com for support.
31
  3. Sign up for an account at wpremote.com and add your site.
32
 
33
  == CHANGELOG ==
 
 
 
34
  = 3.3 =
35
  * Whitelabel fixes
36
 
4
  Plugin URI: https://wpremote.com/
5
  Donate link: https://app.wpremote.com/home/signup
6
  Requires at least: 4.0
7
+ Requires PHP: 5.4.0
8
+ Tested up to: 5.4
9
+ Stable tag: 3.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
 
32
  3. Sign up for an account at wpremote.com and add your site.
33
 
34
  == CHANGELOG ==
35
+ = 3.4 =
36
+ * Plugin branding fixes
37
+
38
  = 3.3 =
39
  * Whitelabel fixes
40
 
wp_admin.php CHANGED
@@ -149,6 +149,11 @@ class WPRWPAdmin {
149
 
150
  public function initBranding($plugins) {
151
  $slug = $this->bvinfo->slug;
 
 
 
 
 
152
  $brand = $this->bvinfo->getBrandInfo();
153
  if ($brand) {
154
  if (array_key_exists('hide', $brand)) {
149
 
150
  public function initBranding($plugins) {
151
  $slug = $this->bvinfo->slug;
152
+
153
+ if (!is_array($plugins) || !isset($slug, $plugins)) {
154
+ return $plugins;
155
+ }
156
+
157
  $brand = $this->bvinfo->getBrandInfo();
158
  if ($brand) {
159
  if (array_key_exists('hide', $brand)) {