From 8a8346a4ca402be7648099e2586e0af8b411fc3e Mon Sep 17 00:00:00 2001 From: Sergey Biryukov Date: Thu, 15 Oct 2020 21:17:08 +0000 Subject: [PATCH] Bootstrap/Load: Revert [49161] from the 5.5 branch. See #50913. git-svn-id: https://develop.svn.wordpress.org/branches/5.5@49164 602fd350-edb4-49c9-b593-d223f7449a82 --- src/wp-includes/load.php | 6 +----- 1 file changed, 1 insertion(+), 5 deletions(-) diff --git a/src/wp-includes/load.php b/src/wp-includes/load.php index 8b6d3ac607..8cc14e06db 100644 --- a/src/wp-includes/load.php +++ b/src/wp-includes/load.php @@ -112,11 +112,7 @@ function wp_check_php_mysql_versions() { exit( 1 ); } - if ( ! extension_loaded( 'mysql' ) && ! extension_loaded( 'mysqli' ) && ! extension_loaded( 'mysqlnd' ) - // This runs before default constants are defined, so we can't assume WP_CONTENT_DIR is set yet - && ( ( defined( 'WP_CONTENT_DIR' ) && ! file_exists( WP_CONTENT_DIR . '/db.php' ) ) - || ( ! file_exists( ABSPATH . 'wp-content/db.php' ) ) ) - ) { + if ( ! extension_loaded( 'mysql' ) && ! extension_loaded( 'mysqli' ) && ! extension_loaded( 'mysqlnd' ) && ! file_exists( WP_CONTENT_DIR . '/db.php' ) ) { require_once ABSPATH . WPINC . '/functions.php'; wp_load_translations_early(); $args = array(