mirror of
https://github.com/mainwp/mainwp-child.git
synced 2025-09-05 09:19:53 +08:00
= 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:
parent
4cf9fa51b1
commit
2b360be79e
53 changed files with 7066 additions and 12059 deletions
|
@ -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 );
|
||||
}
|
||||
}
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue