Version Description
Download this release
Release Info
Developer | cssimmon |
Plugin | Backup and Restore WordPress – WPBackItUp Backup Plugin |
Version | 1.27.0 |
Comparing to | |
See all releases |
Code changes from version 1.26.0 to 1.27.0
- lib/includes/class-api.php +2 -1
- readme.txt +6 -1
- wp-backitup.php +2 -2
lib/includes/class-api.php
CHANGED
@@ -159,7 +159,8 @@ class WPBackItUp_API {
|
|
159 |
|
160 |
} else {
|
161 |
//This is the old schedule so convert to current format
|
162 |
-
$days =
|
|
|
163 |
$days_original = explode(',',$schedule);
|
164 |
if (is_array($days_original) && count($days_original)<=7){ //nothing in the schedule
|
165 |
foreach ( $days_original as $index => $day ) {
|
159 |
|
160 |
} else {
|
161 |
//This is the old schedule so convert to current format
|
162 |
+
$days =array(false, false, false, false, false, false, false); //Sun,Mon, Tue
|
163 |
+
// error_log(var_export($days,true));
|
164 |
$days_original = explode(',',$schedule);
|
165 |
if (is_array($days_original) && count($days_original)<=7){ //nothing in the schedule
|
166 |
foreach ( $days_original as $index => $day ) {
|
readme.txt
CHANGED
@@ -4,7 +4,7 @@ Tags: backup, backups, back up, backup plugin, database backup, multisite backup
|
|
4 |
Requires at least: 3.8.0
|
5 |
Requires PHP: 5.2.4
|
6 |
Tested up to: 4.9
|
7 |
-
Stable tag: 1.
|
8 |
Author URI: https://www.wpbackitup.com
|
9 |
Donate link: https://www.wpbackitup.com
|
10 |
License: GPLv2 or later
|
@@ -217,6 +217,11 @@ Our online documentation and full list of FAQs can be found at [support.wpbackit
|
|
217 |
|
218 |
|
219 |
== Changelog ==
|
|
|
|
|
|
|
|
|
|
|
220 |
= 1.26 =
|
221 |
*Release Date - August 9, 2018
|
222 |
|
4 |
Requires at least: 3.8.0
|
5 |
Requires PHP: 5.2.4
|
6 |
Tested up to: 4.9
|
7 |
+
Stable tag: 1.26.0
|
8 |
Author URI: https://www.wpbackitup.com
|
9 |
Donate link: https://www.wpbackitup.com
|
10 |
License: GPLv2 or later
|
217 |
|
218 |
|
219 |
== Changelog ==
|
220 |
+
= 1.27 =
|
221 |
+
*Release Date - August 10, 2018
|
222 |
+
|
223 |
+
* FIX : Correct php 7.0 issue with array initialization in API
|
224 |
+
|
225 |
= 1.26 =
|
226 |
*Release Date - August 9, 2018
|
227 |
|
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: WPBackItUp
|
8 |
* Author URI: https://www.wpbackitup.com
|
9 |
-
* Version: 1.
|
10 |
* Text Domain: wp-backitup
|
11 |
*
|
12 |
* License: GPL3
|
@@ -32,7 +32,7 @@ define( 'WPBACKITUP__NAMESPACE', 'wp-backitup' );
|
|
32 |
define( 'WPBACKITUP__CLASSNAMESPACE', 'WPBackItUp' );
|
33 |
|
34 |
define( 'WPBACKITUP__MAJOR_VERSION', 1);
|
35 |
-
define( 'WPBACKITUP__MINOR_VERSION',
|
36 |
define( 'WPBACKITUP__MAINTENANCE_VERSION', 0); //Dont forget to update version in header on WP release
|
37 |
define( 'WPBACKITUP__BUILD_VERSION', 0); //Used for hotfix releases
|
38 |
|
6 |
* Description: Backup your content, settings, themes, plugins and media in just a few simple clicks.
|
7 |
* Author: WPBackItUp
|
8 |
* Author URI: https://www.wpbackitup.com
|
9 |
+
* Version: 1.27.0
|
10 |
* Text Domain: wp-backitup
|
11 |
*
|
12 |
* License: GPL3
|
32 |
define( 'WPBACKITUP__CLASSNAMESPACE', 'WPBackItUp' );
|
33 |
|
34 |
define( 'WPBACKITUP__MAJOR_VERSION', 1);
|
35 |
+
define( 'WPBACKITUP__MINOR_VERSION', 27);
|
36 |
define( 'WPBACKITUP__MAINTENANCE_VERSION', 0); //Dont forget to update version in header on WP release
|
37 |
define( 'WPBACKITUP__BUILD_VERSION', 0); //Used for hotfix releases
|
38 |
|