Version Description
Download this release
Release Info
Developer | rmccue |
Plugin | The WP Remote WordPress Plugin |
Version | 2.7.7 |
Comparing to | |
See all releases |
Code changes from version 2.7.6 to 2.7.7
- plugin.php +1 -1
- readme.txt +5 -1
- wprp.hm.backup.php +10 -1
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.7.
|
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.7.7
|
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: 4.7
|
6 |
-
Stable tag: 2.7.
|
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.7.6 (18 Sept 2014)
|
76 |
|
77 |
* Fixed issue with plugins not being reactivated when updated on an MU WordPress install
|
3 |
Tags: wpremote, remote administration, multiple wordpress
|
4 |
Requires at least: 3.0
|
5 |
Tested up to: 4.7
|
6 |
+
Stable tag: 2.7.7
|
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.7.7 (20 April 2017)
|
76 |
+
|
77 |
+
* Fixed fatal error with backup location
|
78 |
+
|
79 |
#### 2.7.6 (18 Sept 2014)
|
80 |
|
81 |
* Fixed issue with plugins not being reactivated when updated on an MU WordPress install
|
wprp.hm.backup.php
CHANGED
@@ -443,12 +443,21 @@ class WPRP_HM_Backup {
|
|
443 |
public function get_path() {
|
444 |
|
445 |
if ( empty( $this->path ) )
|
446 |
-
$this->set_path( self::conform_dir(
|
447 |
|
448 |
return $this->path;
|
449 |
|
450 |
}
|
451 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
452 |
/**
|
453 |
* Set the directory backups are saved to
|
454 |
*
|
443 |
public function get_path() {
|
444 |
|
445 |
if ( empty( $this->path ) )
|
446 |
+
$this->set_path( self::conform_dir( self::get_path_default() ) );
|
447 |
|
448 |
return $this->path;
|
449 |
|
450 |
}
|
451 |
|
452 |
+
/**
|
453 |
+
* Get default backup path to save to.
|
454 |
+
*
|
455 |
+
* @return string
|
456 |
+
*/
|
457 |
+
protected function get_path_default() {
|
458 |
+
return WP_CONTENT_DIR . '/backups';
|
459 |
+
}
|
460 |
+
|
461 |
/**
|
462 |
* Set the directory backups are saved to
|
463 |
*
|