UpdraftPlus WordPress Backup Plugin - Version 1.2.15

Version Description

Fixed bug with deletion of some old S3 backups

Download this release

Release Info

Developer DavidAnderson
Plugin Icon 128x128 UpdraftPlus WordPress Backup Plugin
Version 1.2.15
Comparing to
See all releases

Code changes from version 1.2.14 to 1.2.15

Files changed (3) hide show
  1. methods/s3.php +1 -1
  2. readme.txt +2 -2
  3. updraftplus.php +3 -2
methods/s3.php CHANGED
@@ -113,7 +113,7 @@ class UpdraftPlus_BackupModule_s3 {
113
  $s3_bucket=$bmatches[1];
114
  $s3_uri = $bmatches[2]."/".$file;
115
  } else {
116
- $s3_bucket = $remote_path;
117
  $s3_uri = $file;
118
  }
119
  $updraftplus->log("S3: Delete remote: bucket=$s3_bucket, URI=$s3_uri");
113
  $s3_bucket=$bmatches[1];
114
  $s3_uri = $bmatches[2]."/".$file;
115
  } else {
116
+ $s3_bucket = $orig_bucket_name;
117
  $s3_uri = $file;
118
  }
119
  $updraftplus->log("S3: Delete remote: bucket=$s3_bucket, URI=$s3_uri");
readme.txt CHANGED
@@ -3,12 +3,12 @@ Contributors: David Anderson
3
  Tags: backup, restore, database, cloud, amazon, s3, Amazon S3, DropBox, DropBox backup, 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.2.14
7
  Donate link: http://david.dw-perspective.org.uk/donate
8
  License: GPLv3 or later
9
 
10
  == Upgrade Notice ==
11
- DropBox support
12
 
13
  == Description ==
14
 
3
  Tags: backup, restore, database, cloud, amazon, s3, Amazon S3, DropBox, DropBox backup, 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.2.15
7
  Donate link: http://david.dw-perspective.org.uk/donate
8
  License: GPLv3 or later
9
 
10
  == Upgrade Notice ==
11
+ Fixed bug with deletion of some old S3 backups
12
 
13
  == Description ==
14
 
updraftplus.php CHANGED
@@ -4,7 +4,7 @@ Plugin Name: UpdraftPlus - Backup/Restore
4
  Plugin URI: http://wordpress.org/extend/plugins/updraftplus
5
  Description: Backup and restore: All your content and your DB can be automatically backed up to Amazon S3, DropBox, Google Drive, FTP, or emailed, on separate schedules.
6
  Author: David Anderson.
7
- Version: 1.2.14
8
  Donate link: http://david.dw-perspective.org.uk/donate
9
  License: GPLv3 or later
10
  Author URI: http://wordshell.net
@@ -15,6 +15,7 @@ TODO
15
  //Add Box.Net and Microsoft Skydrive support??
16
  //improve error reporting / pretty up return messages in admin area
17
  //?? On 'backup now', open up a Lightbox, count down 5 seconds, then start examining the log file (if it can be found)
 
18
 
19
  Encrypt filesystem, if memory allows (and have option for abort if not); split up into multiple zips when needed
20
  // Does not delete old custom directories upon a restore?
@@ -56,7 +57,7 @@ define('UPDRAFT_DEFAULT_OTHERS_EXCLUDE','upgrade,cache,updraft,index.php');
56
 
57
  class UpdraftPlus {
58
 
59
- var $version = '1.2.14';
60
 
61
  // Choices will be shown in the admin menu in the order used here
62
  var $backup_methods = array (
4
  Plugin URI: http://wordpress.org/extend/plugins/updraftplus
5
  Description: Backup and restore: All your content and your DB can be automatically backed up to Amazon S3, DropBox, Google Drive, FTP, or emailed, on separate schedules.
6
  Author: David Anderson.
7
+ Version: 1.2.15
8
  Donate link: http://david.dw-perspective.org.uk/donate
9
  License: GPLv3 or later
10
  Author URI: http://wordshell.net
15
  //Add Box.Net and Microsoft Skydrive support??
16
  //improve error reporting / pretty up return messages in admin area
17
  //?? On 'backup now', open up a Lightbox, count down 5 seconds, then start examining the log file (if it can be found)
18
+ //Should make clear in dashboard what is a non-fatal error (i.e. can be retried) - leads to unnecessary bug reports
19
 
20
  Encrypt filesystem, if memory allows (and have option for abort if not); split up into multiple zips when needed
21
  // Does not delete old custom directories upon a restore?
57
 
58
  class UpdraftPlus {
59
 
60
+ var $version = '1.2.15';
61
 
62
  // Choices will be shown in the admin menu in the order used here
63
  var $backup_methods = array (