Version Description
- 12/31/2012 =
- Big code re-factoring; cloud access methods now modularised, paving way for easier adding of new methods. Note that Google Drive users may need to re-authenticate - please check that your backups are working.
Download this release
Release Info
Developer | DavidAnderson |
Plugin | UpdraftPlus WordPress Backup Plugin |
Version | 1.1.6 |
Comparing to | |
See all releases |
Code changes from version 1.1.5 to 1.1.6
- methods/email.php +1 -1
- methods/googledrive.php +1 -1
- readme.txt +2 -2
- updraftplus.php +3 -3
methods/email.php
CHANGED
@@ -14,7 +14,7 @@ class UpdraftPlus_BackupModule_email {
|
|
14 |
$updraftplus->uploaded_file($file);
|
15 |
}
|
16 |
|
17 |
-
$updraftplus->prune_retained_backups("local");
|
18 |
}
|
19 |
|
20 |
function config_print() {
|
14 |
$updraftplus->uploaded_file($file);
|
15 |
}
|
16 |
|
17 |
+
$updraftplus->prune_retained_backups("local", null, null);
|
18 |
}
|
19 |
|
20 |
function config_print() {
|
methods/googledrive.php
CHANGED
@@ -121,7 +121,7 @@ class UpdraftPlus_BackupModule_googledrive {
|
|
121 |
$updraftplus->log("ERROR: $file_name: Failed to upload to Google Drive" );
|
122 |
}
|
123 |
}
|
124 |
-
$updraftplus->prune_retained_backups("googledrive", $this);
|
125 |
}
|
126 |
|
127 |
function delete($file) {
|
121 |
$updraftplus->log("ERROR: $file_name: Failed to upload to Google Drive" );
|
122 |
}
|
123 |
}
|
124 |
+
$updraftplus->prune_retained_backups("googledrive", $this, null);
|
125 |
}
|
126 |
|
127 |
function delete($file) {
|
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.5
|
6 |
-
Stable tag: 1.1.
|
7 |
Donate link: http://david.dw-perspective.org.uk/donate
|
8 |
License: GPLv3 or later
|
9 |
|
@@ -87,7 +87,7 @@ No, there's no warranty or guarantee, etc. It's completely up to you to verify t
|
|
87 |
|
88 |
== Changelog ==
|
89 |
|
90 |
-
= 1.1.
|
91 |
* Big code re-factoring; cloud access methods now modularised, paving way for easier adding of new methods. Note that Google Drive users may need to re-authenticate - please check that your backups are working.
|
92 |
|
93 |
= 1.0.16 - 12/24/2012 =
|
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.5
|
6 |
+
Stable tag: 1.1.6
|
7 |
Donate link: http://david.dw-perspective.org.uk/donate
|
8 |
License: GPLv3 or later
|
9 |
|
87 |
|
88 |
== Changelog ==
|
89 |
|
90 |
+
= 1.1.6 - 12/31/2012 =
|
91 |
* Big code re-factoring; cloud access methods now modularised, paving way for easier adding of new methods. Note that Google Drive users may need to re-authenticate - please check that your backups are working.
|
92 |
|
93 |
= 1.0.16 - 12/24/2012 =
|
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, on separate schedules.
|
6 |
Author: David Anderson.
|
7 |
-
Version: 1.1.
|
8 |
Donate link: http://david.dw-perspective.org.uk/donate
|
9 |
License: GPLv3 or later
|
10 |
Author URI: http://wordshell.net
|
@@ -56,7 +56,7 @@ define('UPDRAFT_DEFAULT_OTHERS_EXCLUDE','upgrade,cache,updraft,index.php');
|
|
56 |
|
57 |
class UpdraftPlus {
|
58 |
|
59 |
-
var $version = '1.1.
|
60 |
|
61 |
// Choices will be shown in the admin menu in the order used here
|
62 |
var $backup_methods = array (
|
@@ -404,7 +404,7 @@ class UpdraftPlus {
|
|
404 |
$remote_obj = new $objname;
|
405 |
$remote_obj->backup($backup_array);
|
406 |
} else {
|
407 |
-
$this->prune_retained_backups("local");
|
408 |
}
|
409 |
}
|
410 |
|
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, on separate schedules.
|
6 |
Author: David Anderson.
|
7 |
+
Version: 1.1.6
|
8 |
Donate link: http://david.dw-perspective.org.uk/donate
|
9 |
License: GPLv3 or later
|
10 |
Author URI: http://wordshell.net
|
56 |
|
57 |
class UpdraftPlus {
|
58 |
|
59 |
+
var $version = '1.1.6';
|
60 |
|
61 |
// Choices will be shown in the admin menu in the order used here
|
62 |
var $backup_methods = array (
|
404 |
$remote_obj = new $objname;
|
405 |
$remote_obj->backup($backup_array);
|
406 |
} else {
|
407 |
+
$this->prune_retained_backups("local", null, null);
|
408 |
}
|
409 |
}
|
410 |
|