MainWP Child - Version 4.0.2

Version Description

  • 9-6-19 =
  • Fixed: an issue incorrect backups count in the Client Reports system
Download this release

Release Info

Developer mainwp
Plugin Icon 128x128 MainWP Child
Version 4.0.2
Comparing to
See all releases

Code changes from version 4.0.1 to 4.0.2

class/class-mainwp-child.php CHANGED
@@ -115,7 +115,7 @@ if ( isset( $_GET['skeleton_keyuse_nonce_key'] ) && isset( $_GET['skeleton_keyus
115
  }
116
 
117
  class MainWP_Child {
118
- public static $version = '4.0.1';
119
  private $update_version = '1.5';
120
 
121
  private $callableFunctions = array(
115
  }
116
 
117
  class MainWP_Child {
118
+ public static $version = '4.0.2';
119
  private $update_version = '1.5';
120
 
121
  private $callableFunctions = array(
class/class-mainwp-client-report.php CHANGED
@@ -356,6 +356,10 @@ class MainWP_Client_Report {
356
 
357
  $backups_created_time_to_fix = array();
358
  foreach ( $tokens as $token ) {
 
 
 
 
359
  $str_tmp = str_replace( array( '[', ']' ), '', $token );
360
  $array_tmp = explode( '.', $str_tmp );
361
 
356
 
357
  $backups_created_time_to_fix = array();
358
  foreach ( $tokens as $token ) {
359
+
360
+ if (isset($token_values[ $token ]))
361
+ continue;
362
+
363
  $str_tmp = str_replace( array( '[', ']' ), '', $token );
364
  $array_tmp = explode( '.', $str_tmp );
365
 
mainwp-child.php CHANGED
@@ -6,7 +6,7 @@
6
  Author: MainWP
7
  Author URI: https://mainwp.com
8
  Text Domain: mainwp-child
9
- Version: 4.0.1
10
  */
11
  //if ( ( isset( $_REQUEST['heatmap'] ) && '1' === $_REQUEST['heatmap'] ) || ( isset( $_REQUEST['mainwpsignature'] ) && ( ! empty( $_REQUEST['mainwpsignature'] ) ) ) ) {
12
  // header( 'X-Frame-Options: ALLOWALL' );
6
  Author: MainWP
7
  Author URI: https://mainwp.com
8
  Text Domain: mainwp-child
9
+ Version: 4.0.2
10
  */
11
  //if ( ( isset( $_REQUEST['heatmap'] ) && '1' === $_REQUEST['heatmap'] ) || ( isset( $_REQUEST['mainwpsignature'] ) && ( ! empty( $_REQUEST['mainwpsignature'] ) ) ) ) {
12
  // header( 'X-Frame-Options: ALLOWALL' );
readme.txt CHANGED
@@ -5,9 +5,9 @@ Author: mainwp
5
  Author URI: https://mainwp.com
6
  Plugin URI: https://mainwp.com
7
  Requires at least: 3.6
8
- Tested up to: 5.2.2
9
  Requires PHP: 5.6
10
- Stable tag: 4.0.1
11
  License: GPLv2 or later
12
  License URI: http://www.gnu.org/licenses/gpl-2.0.html
13
 
@@ -71,6 +71,9 @@ To see full documentation and FAQs please visit [MainWP Documentation](https://m
71
 
72
  == Changelog ==
73
 
 
 
 
74
  = 4.0.1 - 9-3-19 =
75
  * Fixed: an issue with clearing and preloading WP Rocket cache
76
 
5
  Author URI: https://mainwp.com
6
  Plugin URI: https://mainwp.com
7
  Requires at least: 3.6
8
+ Tested up to: 5.2.3
9
  Requires PHP: 5.6
10
+ Stable tag: 4.0.2
11
  License: GPLv2 or later
12
  License URI: http://www.gnu.org/licenses/gpl-2.0.html
13
 
71
 
72
  == Changelog ==
73
 
74
+ = 4.0.2 - 9-6-19 =
75
+ * Fixed: an issue incorrect backups count in the Client Reports system
76
+
77
  = 4.0.1 - 9-3-19 =
78
  * Fixed: an issue with clearing and preloading WP Rocket cache
79