Version Description
*Release Date - March 7, 2017
- FIX: Fix issue with undefined index on $_GET['page']
Download this release
Release Info
Developer | cssimmon |
Plugin | Backup and Restore WordPress – WPBackItUp Backup Plugin |
Version | 1.14.2 |
Comparing to | |
See all releases |
Code changes from version 1.14.1 to 1.14.2
- readme.txt +4 -0
- wp-backitup.php +3 -3
readme.txt
CHANGED
@@ -195,6 +195,10 @@ Our online documentation and full list of FAQs can be found at [support.wpbackit
|
|
195 |
|
196 |
|
197 |
== Changelog ==
|
|
|
|
|
|
|
|
|
198 |
|
199 |
= 1.14.1 =
|
200 |
*Release Date - February 16, 2017
|
195 |
|
196 |
|
197 |
== Changelog ==
|
198 |
+
= 1.14.2 =
|
199 |
+
*Release Date - March 7, 2017
|
200 |
+
|
201 |
+
* FIX: Fix issue with undefined index on $_GET['page']
|
202 |
|
203 |
= 1.14.1 =
|
204 |
*Release Date - February 16, 2017
|
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.14.
|
10 |
* Text Domain: wp-backitup
|
11 |
* Domain Path: /languages
|
12 |
*
|
@@ -34,7 +34,7 @@ define( 'WPBACKITUP__CLASSNAMESPACE', 'WPBackItUp' );
|
|
34 |
|
35 |
define( 'WPBACKITUP__MAJOR_VERSION', 1);
|
36 |
define( 'WPBACKITUP__MINOR_VERSION', 14);
|
37 |
-
define( 'WPBACKITUP__MAINTENANCE_VERSION',
|
38 |
define( 'WPBACKITUP__BUILD_VERSION', 0); //Used for hotfix releases
|
39 |
|
40 |
define( 'WPBACKITUP__VERSION',sprintf("%d.%d.%d.%d", WPBACKITUP__MAJOR_VERSION, WPBACKITUP__MINOR_VERSION,WPBACKITUP__MAINTENANCE_VERSION,WPBACKITUP__BUILD_VERSION));
|
@@ -263,7 +263,7 @@ function wpbackitup_dependency_notice() {
|
|
263 |
}
|
264 |
|
265 |
//Display messages on plugins AND wp-backitup only
|
266 |
-
if ( $pagenow == 'plugins.php' || ( false !== strpos($_GET['page'],'wp-backitup') ) ) {
|
267 |
//Write the notices to the output buffer
|
268 |
if( count($notices)>0 ) {
|
269 |
ob_start(); ?>
|
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.14.2
|
10 |
* Text Domain: wp-backitup
|
11 |
* Domain Path: /languages
|
12 |
*
|
34 |
|
35 |
define( 'WPBACKITUP__MAJOR_VERSION', 1);
|
36 |
define( 'WPBACKITUP__MINOR_VERSION', 14);
|
37 |
+
define( 'WPBACKITUP__MAINTENANCE_VERSION', 2); //Dont forget to update version in header on WP release
|
38 |
define( 'WPBACKITUP__BUILD_VERSION', 0); //Used for hotfix releases
|
39 |
|
40 |
define( 'WPBACKITUP__VERSION',sprintf("%d.%d.%d.%d", WPBACKITUP__MAJOR_VERSION, WPBACKITUP__MINOR_VERSION,WPBACKITUP__MAINTENANCE_VERSION,WPBACKITUP__BUILD_VERSION));
|
263 |
}
|
264 |
|
265 |
//Display messages on plugins AND wp-backitup only
|
266 |
+
if ( $pagenow == 'plugins.php' || ( isset($_GET['page']) && false !== strpos($_GET['page'],'wp-backitup') ) ) {
|
267 |
//Write the notices to the output buffer
|
268 |
if( count($notices)>0 ) {
|
269 |
ob_start(); ?>
|