Version Description
Download this release
Release Info
Developer | jeramynirodha |
Plugin | The WP Remote WordPress Plugin |
Version | 2.8.0.1 |
Comparing to | |
See all releases |
Code changes from version 2.8.0 to 2.8.0.1
- plugin.php +1 -1
- readme.txt +5 -1
- wprp.plugins.php +2 -2
plugin.php
CHANGED
@@ -3,7 +3,7 @@
|
|
3 |
/*
|
4 |
Plugin Name: WP Remote
|
5 |
Description: Manage your WordPress site with <a href="https://wpremote.com/">WP Remote</a>. <strong>Deactivate to clear your API Key.</strong>
|
6 |
-
Version: 2.8.0
|
7 |
Author: maekit
|
8 |
Author URI: https://maek.it/
|
9 |
*/
|
3 |
/*
|
4 |
Plugin Name: WP Remote
|
5 |
Description: Manage your WordPress site with <a href="https://wpremote.com/">WP Remote</a>. <strong>Deactivate to clear your API Key.</strong>
|
6 |
+
Version: 2.8.0.1
|
7 |
Author: maekit
|
8 |
Author URI: https://maek.it/
|
9 |
*/
|
readme.txt
CHANGED
@@ -3,7 +3,7 @@ Contributors: jeramynirodha, bmett, humanmade, willmot, joehoyle, danielbachhube
|
|
3 |
Tags: wpremote, remote administration, multiple wordpress
|
4 |
Requires at least: 3.0
|
5 |
Tested up to: 4.8.1
|
6 |
-
Stable tag: 2.8.0
|
7 |
|
8 |
WP Remote is a free web app that enables you to easily manage all of your WordPress powered sites from one place.
|
9 |
|
@@ -72,6 +72,10 @@ You can email us at support@wpremote.com for support.
|
|
72 |
|
73 |
== Changelog ==
|
74 |
|
|
|
|
|
|
|
|
|
75 |
#### 2.8.0 (30 August 2017)
|
76 |
|
77 |
* Modify plugin activation and return plugin active status to WP Remote
|
3 |
Tags: wpremote, remote administration, multiple wordpress
|
4 |
Requires at least: 3.0
|
5 |
Tested up to: 4.8.1
|
6 |
+
Stable tag: 2.8.0.1
|
7 |
|
8 |
WP Remote is a free web app that enables you to easily manage all of your WordPress powered sites from one place.
|
9 |
|
72 |
|
73 |
== Changelog ==
|
74 |
|
75 |
+
#### 2.8.0.1 (31 August 2017)
|
76 |
+
|
77 |
+
* Bug fix for PHP < 5.4
|
78 |
+
|
79 |
#### 2.8.0 (30 August 2017)
|
80 |
|
81 |
* Modify plugin activation and return plugin active status to WP Remote
|
wprp.plugins.php
CHANGED
@@ -167,12 +167,12 @@ function _wprp_update_plugin( $plugin_file, $args ) {
|
|
167 |
return new WP_Error('plugin-update', __('Unknown error updating plugin.', 'wpremote'));
|
168 |
}
|
169 |
|
170 |
-
$active_status =
|
171 |
'was_active' => $is_active,
|
172 |
'was_active_network' => $is_active_network,
|
173 |
'is_active' => is_plugin_active( $plugin_file ),
|
174 |
'is_active_network' => is_plugin_active_for_network( $plugin_file ),
|
175 |
-
|
176 |
|
177 |
return array( 'status' => 'success', 'active_status' => $active_status );
|
178 |
}
|
167 |
return new WP_Error('plugin-update', __('Unknown error updating plugin.', 'wpremote'));
|
168 |
}
|
169 |
|
170 |
+
$active_status = array(
|
171 |
'was_active' => $is_active,
|
172 |
'was_active_network' => $is_active_network,
|
173 |
'is_active' => is_plugin_active( $plugin_file ),
|
174 |
'is_active_network' => is_plugin_active_for_network( $plugin_file ),
|
175 |
+
);
|
176 |
|
177 |
return array( 'status' => 'success', 'active_status' => $active_status );
|
178 |
}
|