Backup and Restore WordPress – WPBackItUp Backup Plugin - Version 1.14.7

Version Description

*Release Date - July 19, 2017

  • FIX: Fix issues with CSS filter on PHP 5.2
Download this release

Release Info

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

Code changes from version 1.14.6 to 1.14.7

lib/includes/class-wpbackitup-admin.php CHANGED
@@ -223,10 +223,13 @@ class WPBackitup_Admin {
223
  if( !empty($_REQUEST['page']) && substr($_REQUEST['page'], 0, 11) === 'wp-backitup') {
224
 
225
  // update body class
226
- add_filter( 'admin_body_class', function( $classes ) {
227
- $classes .= ' wpb-main';
228
- return $classes;
229
- });
 
 
 
230
 
231
  // Admin JavaScript
232
  wp_register_script("{$this->namespace}-jquery-tagit", WPBACKITUP__PLUGIN_URL."js/tag-it.min.js", array('jquery'), $this->version, true);
223
  if( !empty($_REQUEST['page']) && substr($_REQUEST['page'], 0, 11) === 'wp-backitup') {
224
 
225
  // update body class
226
+ // Added inline function to support PHP 5.2
227
+ function add_admin_body_class( $classes ) {
228
+ $classes .= ' wpb-main';
229
+ return $classes;
230
+ }
231
+
232
+ add_filter( 'admin_body_class', 'add_admin_body_class');
233
 
234
  // Admin JavaScript
235
  wp_register_script("{$this->namespace}-jquery-tagit", WPBACKITUP__PLUGIN_URL."js/tag-it.min.js", array('jquery'), $this->version, true);
readme.txt CHANGED
@@ -3,7 +3,7 @@ Contributors: wpbackitup, cssimmon, alaminopu, imranshuvo
3
  Tags: backup, backups, back up, backup plugin, database backup, multisite backup, full backup, database, restore, migrate, clone, malware
4
  Requires at least: 3.8.0
5
  Tested up to: 4.8
6
- Stable tag: 1.14.5
7
  Author URI: https://www.wpbackitup.com
8
  Donate link: https://www.wpbackitup.com
9
  License: GPLv2 or later
@@ -197,6 +197,11 @@ Our online documentation and full list of FAQs can be found at [support.wpbackit
197
 
198
 
199
  == Changelog ==
 
 
 
 
 
200
  = 1.14.6 =
201
  *Release Date - July 15, 2017
202
 
3
  Tags: backup, backups, back up, backup plugin, database backup, multisite backup, full backup, database, restore, migrate, clone, malware
4
  Requires at least: 3.8.0
5
  Tested up to: 4.8
6
+ Stable tag: 1.14.6
7
  Author URI: https://www.wpbackitup.com
8
  Donate link: https://www.wpbackitup.com
9
  License: GPLv2 or later
197
 
198
 
199
  == Changelog ==
200
+ = 1.14.7 =
201
+ *Release Date - July 19, 2017
202
+
203
+ * FIX: Fix issues with CSS filter on PHP 5.2
204
+
205
  = 1.14.6 =
206
  *Release Date - July 15, 2017
207
 
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.6
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', 6); //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));
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.7
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', 7); //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));