Version Description
Download this release
Release Info
Developer | cssimmon |
Plugin | Backup and Restore WordPress – WPBackItUp Backup Plugin |
Version | 1.28.0 |
Comparing to | |
See all releases |
Code changes from version 1.27.0 to 1.28.0
- lib/includes/class-api.php +1 -1
- readme.txt +6 -1
- wp-backitup.php +2 -2
lib/includes/class-api.php
CHANGED
@@ -210,7 +210,7 @@ class WPBackItUp_API {
|
|
210 |
$errors = array();
|
211 |
$this->validate_field($form_data['name'], 'name', $errors,null,false);
|
212 |
$this->validate_field($form_data['start_date'], 'start_date', $errors,null,true);
|
213 |
-
$this->validate_field($form_data['frequency'], 'frequency', $errors,
|
214 |
//days below
|
215 |
$this->validate_field($form_data['start_time'], 'start_time', $errors,null,true);
|
216 |
$this->validate_field($form_data['enabled'], 'enabled', $errors,null,true);
|
210 |
$errors = array();
|
211 |
$this->validate_field($form_data['name'], 'name', $errors,null,false);
|
212 |
$this->validate_field($form_data['start_date'], 'start_date', $errors,null,true);
|
213 |
+
$this->validate_field($form_data['frequency'], 'frequency', $errors,array('day','week', 'month'),true);
|
214 |
//days below
|
215 |
$this->validate_field($form_data['start_time'], 'start_time', $errors,null,true);
|
216 |
$this->validate_field($form_data['enabled'], 'enabled', $errors,null,true);
|
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.27 =
|
221 |
*Release Date - August 10, 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.27.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.28 =
|
221 |
+
*Release Date - August 13, 2018
|
222 |
+
|
223 |
+
* FIX : Correct additional issue with php 7.0 array initialization in API
|
224 |
+
|
225 |
= 1.27 =
|
226 |
*Release Date - August 10, 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.28.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', 28);
|
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 |
|