UpdraftPlus WordPress Backup Plugin - Version 1.1.0

Version Description

  • 12/29/2012 =
  • Big code re-factoring; cloud access methods now modularised, paving way for easier adding of new methods
Download this release

Release Info

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

Code changes from version 1.0.20 to 1.1.0

Files changed (2) hide show
  1. readme.txt +3 -3
  2. updraftplus.php +3 -3
readme.txt CHANGED
@@ -8,7 +8,7 @@ Donate link: http://david.dw-perspective.org.uk/donate
8
  License: GPLv3 or later
9
 
10
  == Upgrade Notice ==
11
- Beginning of code re-organisation to make programming new cloud methods easier
12
 
13
  == Description ==
14
 
@@ -87,8 +87,8 @@ No, there's no warranty or guarantee, etc. It's completely up to you to verify t
87
 
88
  == Changelog ==
89
 
90
- = 1.0.20 - 12/29/2012 =
91
- * Big code re-factoring; moving towards modularising cloud access methods
92
 
93
  = 1.0.16 - 12/24/2012 =
94
  * Improve race detection and clean up already-created files when detected
8
  License: GPLv3 or later
9
 
10
  == Upgrade Notice ==
11
+ Big code re-organisation to make programming new cloud methods easier
12
 
13
  == Description ==
14
 
87
 
88
  == Changelog ==
89
 
90
+ = 1.1.0 - 12/29/2012 =
91
+ * Big code re-factoring; cloud access methods now modularised, paving way for easier adding of new methods
92
 
93
  = 1.0.16 - 12/24/2012 =
94
  * Improve race detection and clean up already-created files when detected
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.0.20
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.0.20';
60
 
61
  // Choices will be shown in the admin menu in the order used here
62
  var $backup_methods = array (
@@ -1688,7 +1688,7 @@ echo $delete_local; ?> /> <br>Check this to delete the local backup file (only s
1688
  foreach ($this->backup_methods as $method => $description) {
1689
  require_once(UPDRAFTPLUS_DIR.'/methods/'.$method.'.php');
1690
  $call_method = "UpdraftPlus_BackupModule_$method";
1691
- $call_method::config_print();
1692
  }
1693
  ?>
1694
  </table>
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.0
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.0';
60
 
61
  // Choices will be shown in the admin menu in the order used here
62
  var $backup_methods = array (
1688
  foreach ($this->backup_methods as $method => $description) {
1689
  require_once(UPDRAFTPLUS_DIR.'/methods/'.$method.'.php');
1690
  $call_method = "UpdraftPlus_BackupModule_$method";
1691
+ call_user_func(array($call_method, 'config_print'));
1692
  }
1693
  ?>
1694
  </table>