mirror of
https://github.com/gosticks/wordpress-develop.git
synced 2026-06-28 14:20:15 +00:00
Load: Avoid loading a theme's functions.php when ! wp_using_themes().
Updates `wp_get_active_and_valid_themes()` to return early when `wp_using_themes()` returns `false`. This prevents a theme's `functions.php` from being loaded erroneously when the site isn't using themes. Also adds `define( 'WP_USE_THEMES', true );` to the test suite bootstrap. Some tests randomly break without it because they were dependent on the previous buggy behavior. Props bpayton, costdev, danielbachhuber, hellofromtonya, sergeybiryukov, spacedmonkey. Fixes #57928. git-svn-id: https://develop.svn.wordpress.org/trunk@55890 602fd350-edb4-49c9-b593-d223f7449a82
This commit is contained in:
@@ -252,6 +252,7 @@ $phpmailer = new MockPHPMailer( true );
|
||||
if ( ! defined( 'WP_DEFAULT_THEME' ) ) {
|
||||
define( 'WP_DEFAULT_THEME', 'default' );
|
||||
}
|
||||
define( 'WP_USE_THEMES', true );
|
||||
$wp_theme_directories = array();
|
||||
|
||||
if ( file_exists( DIR_TESTDATA . '/themedir1' ) ) {
|
||||
|
||||
Reference in New Issue
Block a user