Backup and Restore WordPress – WPBackItUp Backup Plugin - Version 1.13.3

Version Description

Download this release

Release Info

Developer cssimmon
Plugin Icon 128x128 Backup and Restore WordPress – WPBackItUp Backup Plugin
Version 1.13.3
Comparing to
See all releases

Code changes from version 1.13.2 to 1.13.3

Files changed (3) hide show
  1. lib/includes/job_backup.php +3 -3
  2. readme.txt +7 -1
  3. wp-backitup.php +2 -2
lib/includes/job_backup.php CHANGED
@@ -44,9 +44,9 @@ if( !class_exists( 'WPBackItUp_DataAccess' ) ) {
44
  include_once 'class-database.php';
45
  }
46
 
47
- if( !class_exists( 'WPBackItUp_Encryption' ) ) {
48
- include_once 'class-encryption.php';
49
- }
50
 
51
  /*** Globals ***/
52
  global $WPBackitup;
44
  include_once 'class-database.php';
45
  }
46
 
47
+ //if( !class_exists( 'WPBackItUp_Encryption' ) ) {
48
+ // include_once 'class-encryption.php';
49
+ //}
50
 
51
  /*** Globals ***/
52
  global $WPBackitup;
readme.txt CHANGED
@@ -4,7 +4,7 @@ Donate link: http://www.wpbackitup.com
4
  Tags: backup, backups, restore, migrate, clone, duplicate, multisite, database, archive, malware, download, mysql
5
  Requires at least: 3.8.0
6
  Tested up to: 4.6.1
7
- Stable tag: 1.13.1
8
  License: GPLv2 or later
9
  License URI: http://www.gnu.org/licenses/gpl-2.0.html
10
 
@@ -167,6 +167,12 @@ Our online documentation and full list of FAQs can be found at [support.wpbackit
167
 
168
  == Changelog ==
169
 
 
 
 
 
 
 
170
  = 1.13.2=
171
  *Release Date - October 13, 2016
172
 
4
  Tags: backup, backups, restore, migrate, clone, duplicate, multisite, database, archive, malware, download, mysql
5
  Requires at least: 3.8.0
6
  Tested up to: 4.6.1
7
+ Stable tag: 1.13.2
8
  License: GPLv2 or later
9
  License URI: http://www.gnu.org/licenses/gpl-2.0.html
10
 
167
 
168
  == Changelog ==
169
 
170
+ = 1.13.3=
171
+ *Release Date - October 14, 2016
172
+
173
+ * Fix : Remove reference to phar file causing issues with some customers
174
+
175
+
176
  = 1.13.2=
177
  *Release Date - October 13, 2016
178
 
wp-backitup.php CHANGED
@@ -6,7 +6,7 @@
6
  * Description: Backup your content, settings, themes, plugins and media in just a few simple clicks.
7
  * Author: Chris Simmons
8
  * Author URI: https://www.wpbackitup.com
9
- * Version: 1.13.2
10
  * Text Domain: wp-backitup
11
  * Domain Path: /languages
12
  *
@@ -33,7 +33,7 @@ define( 'WPBACKITUP__CLASSNAMESPACE', 'WPBackItUp' );
33
 
34
  define( 'WPBACKITUP__MAJOR_VERSION', 1);
35
  define( 'WPBACKITUP__MINOR_VERSION', 13);
36
- define( 'WPBACKITUP__MAINTENANCE_VERSION', 2); //Dont forget to update version in header on WP release
37
  define( 'WPBACKITUP__BUILD_VERSION', 0); //Used for hotfix releases
38
 
39
  define( 'WPBACKITUP__VERSION',sprintf("%d.%d.%d.%d", WPBACKITUP__MAJOR_VERSION, WPBACKITUP__MINOR_VERSION,WPBACKITUP__MAINTENANCE_VERSION,WPBACKITUP__BUILD_VERSION));
6
  * Description: Backup your content, settings, themes, plugins and media in just a few simple clicks.
7
  * Author: Chris Simmons
8
  * Author URI: https://www.wpbackitup.com
9
+ * Version: 1.13.3
10
  * Text Domain: wp-backitup
11
  * Domain Path: /languages
12
  *
33
 
34
  define( 'WPBACKITUP__MAJOR_VERSION', 1);
35
  define( 'WPBACKITUP__MINOR_VERSION', 13);
36
+ define( 'WPBACKITUP__MAINTENANCE_VERSION', 3); //Dont forget to update version in header on WP release
37
  define( 'WPBACKITUP__BUILD_VERSION', 0); //Used for hotfix releases
38
 
39
  define( 'WPBACKITUP__VERSION',sprintf("%d.%d.%d.%d", WPBACKITUP__MAJOR_VERSION, WPBACKITUP__MINOR_VERSION,WPBACKITUP__MAINTENANCE_VERSION,WPBACKITUP__BUILD_VERSION));