Version Description
- 12/10/2012 =
- Don't whinge about Google Drive authentication if that method is not current
Download this release
Release Info
Developer | DavidAnderson |
Plugin | UpdraftPlus WordPress Backup Plugin |
Version | 0.8.37 |
Comparing to | |
See all releases |
Code changes from version 0.8.36 to 0.8.37
- readme.txt +5 -2
- updraftplus.php +3 -3
readme.txt
CHANGED
@@ -3,7 +3,7 @@ Contributors: David Anderson
|
|
3 |
Tags: backup, restore, database, cloud, amazon, s3, Amazon S3, google drive, google, gdrive, ftp, cloud, updraft, back up
|
4 |
Requires at least: 3.2
|
5 |
Tested up to: 3.4.2
|
6 |
-
Stable tag: 0.8.
|
7 |
Donate link: http://david.dw-perspective.org.uk/donate
|
8 |
License: GPLv2 or later
|
9 |
|
@@ -12,7 +12,7 @@ License: GPLv2 or later
|
|
12 |
UpdraftPlus simplifies backups (and restoration). Backup into the cloud (S3, Google Drive, FTP, and email) and restore with a single click. Backups of files and database can have separate schedules.
|
13 |
|
14 |
== Upgrade Notice ==
|
15 |
-
|
16 |
|
17 |
== Installation ==
|
18 |
|
@@ -47,6 +47,9 @@ Contact me! This is a complex plugin and the only way I can ensure it's robust i
|
|
47 |
|
48 |
== Changelog ==
|
49 |
|
|
|
|
|
|
|
50 |
= 0.8.36 - 03/10/2012 =
|
51 |
* Support using sub-directories in Amazon S3
|
52 |
* Some more debug logging for Amazon S3
|
3 |
Tags: backup, restore, database, cloud, amazon, s3, Amazon S3, google drive, google, gdrive, ftp, cloud, updraft, back up
|
4 |
Requires at least: 3.2
|
5 |
Tested up to: 3.4.2
|
6 |
+
Stable tag: 0.8.37
|
7 |
Donate link: http://david.dw-perspective.org.uk/donate
|
8 |
License: GPLv2 or later
|
9 |
|
12 |
UpdraftPlus simplifies backups (and restoration). Backup into the cloud (S3, Google Drive, FTP, and email) and restore with a single click. Backups of files and database can have separate schedules.
|
13 |
|
14 |
== Upgrade Notice ==
|
15 |
+
Bug fix: Don't whinge about failed GoogleDrive authentication if that method is not the live one
|
16 |
|
17 |
== Installation ==
|
18 |
|
47 |
|
48 |
== Changelog ==
|
49 |
|
50 |
+
= 0.8.37 - 12/10/2012 =
|
51 |
+
* Don't whinge about Google Drive authentication if that method is not current
|
52 |
+
|
53 |
= 0.8.36 - 03/10/2012 =
|
54 |
* Support using sub-directories in Amazon S3
|
55 |
* Some more debug logging for Amazon S3
|
updraftplus.php
CHANGED
@@ -4,7 +4,7 @@ Plugin Name: UpdraftPlus - Backup/Restore
|
|
4 |
Plugin URI: http://wordpress.org/extend/plugins/updraftplus
|
5 |
Description: Uploads, themes, plugins, and your DB can be automatically backed up to Amazon S3, Google Drive, FTP, or emailed. Files and DB can be on separate schedules.
|
6 |
Author: David Anderson.
|
7 |
-
Version: 0.8.
|
8 |
Donate link: http://david.dw-perspective.org.uk/donate
|
9 |
Author URI: http://wordshell.net
|
10 |
*/
|
@@ -56,7 +56,7 @@ if(!$updraft->memory_check(192)) {
|
|
56 |
|
57 |
class UpdraftPlus {
|
58 |
|
59 |
-
var $version = '0.8.
|
60 |
|
61 |
var $dbhandle;
|
62 |
var $errors = array();
|
@@ -1560,7 +1560,7 @@ class UpdraftPlus {
|
|
1560 |
}
|
1561 |
}
|
1562 |
*/
|
1563 |
-
if (current_user_can('manage_options') && get_option('updraft_googledrive_clientid') != "" && get_option('updraft_googledrive_token','xyz') == 'xyz') {
|
1564 |
add_action('admin_notices', array($this,'show_admin_warning_googledrive') );
|
1565 |
}
|
1566 |
}
|
4 |
Plugin URI: http://wordpress.org/extend/plugins/updraftplus
|
5 |
Description: Uploads, themes, plugins, and your DB can be automatically backed up to Amazon S3, Google Drive, FTP, or emailed. Files and DB can be on separate schedules.
|
6 |
Author: David Anderson.
|
7 |
+
Version: 0.8.37
|
8 |
Donate link: http://david.dw-perspective.org.uk/donate
|
9 |
Author URI: http://wordshell.net
|
10 |
*/
|
56 |
|
57 |
class UpdraftPlus {
|
58 |
|
59 |
+
var $version = '0.8.37';
|
60 |
|
61 |
var $dbhandle;
|
62 |
var $errors = array();
|
1560 |
}
|
1561 |
}
|
1562 |
*/
|
1563 |
+
if (current_user_can('manage_options') && get_option('updraft_service') == "googledrive" && get_option('updraft_googledrive_clientid') != "" && get_option('updraft_googledrive_token','xyz') == 'xyz') {
|
1564 |
add_action('admin_notices', array($this,'show_admin_warning_googledrive') );
|
1565 |
}
|
1566 |
}
|