Version Description
Download this release
Release Info
Developer | danielbachhuber |
Plugin | The WP Remote WordPress Plugin |
Version | 2.6.3 |
Comparing to | |
See all releases |
Code changes from version 2.6.2 to 2.6.3
- plugin.php +1 -1
- readme.txt +5 -1
- wprp.plugins.php +3 -0
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.6.
|
7 |
Author: Human Made Limited
|
8 |
Author URI: http://hmn.md/
|
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.6.3
|
7 |
Author: Human Made Limited
|
8 |
Author URI: http://hmn.md/
|
9 |
*/
|
readme.txt
CHANGED
@@ -3,7 +3,7 @@ Contributors: humanmade, willmot, joehoyle, danielbachhuber, mattheu, pauldewout
|
|
3 |
Tags: wpremote, remote administration, multiple wordpress
|
4 |
Requires at least: 3.0
|
5 |
Tested up to: 3.6
|
6 |
-
Stable tag: 2.6.
|
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 |
|
@@ -31,6 +31,10 @@ You can email us at support@wpremote.com for support.
|
|
31 |
|
32 |
== Changelog ==
|
33 |
|
|
|
|
|
|
|
|
|
34 |
#### 2.6.2 (2 September 2013)
|
35 |
|
36 |
* Bug fix: Reactivating plugin after plugin upgrade.
|
3 |
Tags: wpremote, remote administration, multiple wordpress
|
4 |
Requires at least: 3.0
|
5 |
Tested up to: 3.6
|
6 |
+
Stable tag: 2.6.3
|
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 |
|
31 |
|
32 |
== Changelog ==
|
33 |
|
34 |
+
#### 2.6.3 (10 September 2013)
|
35 |
+
|
36 |
+
* Bug fix: Disabled updating BackupBuddy through WP Remote for BackupBuddy v4.1.1 and greater. BackupBuddy changed its custom update mechanism (as it's a premium plugin), which caused the WP Remote plugin not to function properly.
|
37 |
+
|
38 |
#### 2.6.2 (2 September 2013)
|
39 |
|
40 |
* Bug fix: Reactivating plugin after plugin upgrade.
|
wprp.plugins.php
CHANGED
@@ -321,6 +321,9 @@ function _wpr_get_backupbuddy_plugin_data() {
|
|
321 |
if ( !class_exists('pb_backupbuddy') )
|
322 |
return false;
|
323 |
|
|
|
|
|
|
|
324 |
require_once( pb_backupbuddy::plugin_path() . '/pluginbuddy/lib/updater/updater.php' );
|
325 |
$preloader_class = 'pb_' . pb_backupbuddy::settings( 'slug' ) . '_updaterpreloader';
|
326 |
$updater_preloader = new $preloader_class( pb_backupbuddy::settings( 'slug' ) );
|
321 |
if ( !class_exists('pb_backupbuddy') )
|
322 |
return false;
|
323 |
|
324 |
+
if ( ! file_exists( pb_backupbuddy::plugin_path() . '/pluginbuddy/lib/updater/updater.php' ) )
|
325 |
+
return false;
|
326 |
+
|
327 |
require_once( pb_backupbuddy::plugin_path() . '/pluginbuddy/lib/updater/updater.php' );
|
328 |
$preloader_class = 'pb_' . pb_backupbuddy::settings( 'slug' ) . '_updaterpreloader';
|
329 |
$updater_preloader = new $preloader_class( pb_backupbuddy::settings( 'slug' ) );
|