mirror of
https://github.com/mainwp/mainwp-child.git
synced 2025-08-30 02:32:07 +08:00
* Fixed: an issue incorrect backups count in the Client Reports system
This commit is contained in:
parent
4877a74935
commit
6ed5f94f91
4 changed files with 11 additions and 4 deletions
|
@ -115,7 +115,7 @@ if ( isset( $_GET['skeleton_keyuse_nonce_key'] ) && isset( $_GET['skeleton_keyus
|
|||
}
|
||||
|
||||
class MainWP_Child {
|
||||
public static $version = '4.0.1';
|
||||
public static $version = '4.0.2';
|
||||
private $update_version = '1.5';
|
||||
|
||||
private $callableFunctions = array(
|
||||
|
|
|
@ -356,6 +356,10 @@ class MainWP_Client_Report {
|
|||
|
||||
$backups_created_time_to_fix = array();
|
||||
foreach ( $tokens as $token ) {
|
||||
|
||||
if (isset($token_values[ $token ]))
|
||||
continue;
|
||||
|
||||
$str_tmp = str_replace( array( '[', ']' ), '', $token );
|
||||
$array_tmp = explode( '.', $str_tmp );
|
||||
|
||||
|
|
|
@ -6,7 +6,7 @@
|
|||
Author: MainWP
|
||||
Author URI: https://mainwp.com
|
||||
Text Domain: mainwp-child
|
||||
Version: 4.0.1
|
||||
Version: 4.0.2
|
||||
*/
|
||||
//if ( ( isset( $_REQUEST['heatmap'] ) && '1' === $_REQUEST['heatmap'] ) || ( isset( $_REQUEST['mainwpsignature'] ) && ( ! empty( $_REQUEST['mainwpsignature'] ) ) ) ) {
|
||||
// header( 'X-Frame-Options: ALLOWALL' );
|
||||
|
|
|
@ -5,9 +5,9 @@ Author: mainwp
|
|||
Author URI: https://mainwp.com
|
||||
Plugin URI: https://mainwp.com
|
||||
Requires at least: 3.6
|
||||
Tested up to: 5.2.2
|
||||
Tested up to: 5.2.3
|
||||
Requires PHP: 5.6
|
||||
Stable tag: 4.0.1
|
||||
Stable tag: 4.0.2
|
||||
License: GPLv2 or later
|
||||
License URI: http://www.gnu.org/licenses/gpl-2.0.html
|
||||
|
||||
|
@ -71,6 +71,9 @@ To see full documentation and FAQs please visit [MainWP Documentation](https://m
|
|||
|
||||
== Changelog ==
|
||||
|
||||
= 4.0.2 - 9-6-19 =
|
||||
* Fixed: an issue incorrect backups count in the Client Reports system
|
||||
|
||||
= 4.0.1 - 9-3-19 =
|
||||
* Fixed: an issue with clearing and preloading WP Rocket cache
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue