= 4.0.7.1 - 4-30-20 =

* Fixed: JSON decoding issues on specific setups
* Fixed: an issue with incorrect images URL
* Fixed: conflict with the Download Manager plugin
* Fixed: multiple PHP warnings
* Fixed: MySQL query compatibility problems
* Fixed: an issue with saving Wordfence settings
* Fixed: an issue with showing correct post and page creating time
* Fixed: an issue with displaying correct author in reports
* Added: support for WPVivid backups in the reporting system
* Preventative: security improvements
This commit is contained in:
thanghv 2020-05-01 00:05:03 +07:00
parent 4cf9fa51b1
commit 2b360be79e
53 changed files with 7066 additions and 12059 deletions

View file

@ -6,11 +6,11 @@
Author: MainWP
Author URI: https://mainwp.com
Text Domain: mainwp-child
Version: 4.0.7
Version: 4.0.7.1
*/
require_once ABSPATH . 'wp-includes' . DIRECTORY_SEPARATOR . 'version.php'; // Version information from WordPress
include_once( ABSPATH . 'wp-includes' . DIRECTORY_SEPARATOR . 'version.php' ); //Version information from wordpress
define( 'MAINWP_DEBUG', false );
define( 'MAINWP_DEBUG', FALSE );
if ( ! defined( 'MAINWP_CHILD_FILE' ) ) {
define( 'MAINWP_CHILD_FILE', __FILE__ );
@ -25,7 +25,7 @@ function mainwp_child_autoload( $class_name ) {
$autoload_path = sprintf( '%sclass-%s.php', $autoload_dir, strtolower( str_replace( '_', '-', $class_name ) ) );
if ( file_exists( $autoload_path ) ) {
require_once $autoload_path;
require_once( $autoload_path );
}
}