UpdraftPlus WordPress Backup Plugin - Version 1.1.3

Version Description

  • 12/31/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.3
Comparing to
See all releases

Code changes from version 1.1.2 to 1.1.3

Files changed (2) hide show
  1. readme.txt +2 -2
  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.5
6
- Stable tag: 1.0.15
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.2 - 12/31/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 =
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.3
7
  Donate link: http://david.dw-perspective.org.uk/donate
8
  License: GPLv3 or later
9
 
87
 
88
  == Changelog ==
89
 
90
+ = 1.1.3 - 12/31/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 =
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.2
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.2';
60
 
61
  // Choices will be shown in the admin menu in the order used here
62
  var $backup_methods = array (
@@ -1717,7 +1717,7 @@ echo $delete_local; ?> /> <br>Check this to delete the local backup file (only s
1717
  jQuery(document).ready(function() {
1718
  jQuery('.updraftplusmethod').hide();
1719
  <?php
1720
- if ($active_service) { echo "jQuery('.<?php echo $active_service ?>').show();"; }
1721
  ?>
1722
  });
1723
  /* ]]> */
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.3
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.3';
60
 
61
  // Choices will be shown in the admin menu in the order used here
62
  var $backup_methods = array (
1717
  jQuery(document).ready(function() {
1718
  jQuery('.updraftplusmethod').hide();
1719
  <?php
1720
+ if ($active_service) echo "jQuery('.${active_service}').show();";
1721
  ?>
1722
  });
1723
  /* ]]> */