mirror of
https://github.com/WordPress/WordPress.git
synced 2024-11-13 06:07:23 +01:00
Bootstrap/Load: Revert Plugin Global restoration around advance-cache.php
.
Merges [38251] to the 4.6 branch. First added in [37588] and later modified in [38224], the idea was to ensure that filters/actions added before `advance-cache.php` would not disappear if `advance-cache.php` overloaded the filters/actions with code such as `$wp_filter = array()`. This is an edge case and one that there is no documented case of existing. This restores the behavior from WordPress 4.5 and before. It is strongly encouraged that developers using `advance-cache.php` to use the Plugins API that is available before the loading of `advance-cache.php` rather than directly interacting with any of the globals. Props azaozz, jorbin, dd32 for review, pento for review, westi for investigation, ipstenu for research. See #36819. Built from https://develop.svn.wordpress.org/branches/4.6@38252 git-svn-id: http://core.svn.wordpress.org/branches/4.6@38193 1a063a9b-81f0-0310-95a4-ce76da25c4cd
This commit is contained in:
parent
05eb0237ce
commit
4d1a6af1ba
@ -1001,97 +1001,3 @@ function _wp_filter_build_unique_id($tag, $function, $priority) {
|
||||
return $function[0] . '::' . $function[1];
|
||||
}
|
||||
}
|
||||
|
||||
/**
|
||||
* Backs up global variables used for actions and filters.
|
||||
*
|
||||
* Prevents redefinition of these globals in advanced-cache.php from accidentally
|
||||
* destroying existing data.
|
||||
*
|
||||
* @since 4.6.0
|
||||
* @access private
|
||||
*
|
||||
* @global array $wp_filter Stores all filters and actions.
|
||||
* @global array $wp_actions Stores the amount of times an action was triggered.
|
||||
* @global array $merged_filters Merges the filter hooks using this function.
|
||||
* @global array $wp_current_filter Stores the list of current filters with the current one last.
|
||||
* @staticvar array $backup_globals Backed up globals.
|
||||
*
|
||||
* @return array the staticvar from the first time it is set.
|
||||
*/
|
||||
function _backup_plugin_globals( $backup = true ) {
|
||||
global $wp_filter, $wp_actions, $merged_filters, $wp_current_filter;
|
||||
|
||||
static $backup_globals = array();
|
||||
|
||||
if ( $backup ) {
|
||||
$backup_globals = array(
|
||||
'backup_wp_filter' => $wp_filter,
|
||||
'backup_wp_actions' => $wp_actions,
|
||||
'backup_merged_filters' => $merged_filters,
|
||||
'backup_wp_current_filter' => $wp_current_filter,
|
||||
);
|
||||
|
||||
$wp_filter = $wp_actions = array();
|
||||
}
|
||||
return $backup_globals;
|
||||
}
|
||||
|
||||
/**
|
||||
* Safely restores backed up global variables used for actions and filters.
|
||||
*
|
||||
* @since 4.6.0
|
||||
* @access private
|
||||
*
|
||||
* @global array $wp_filter Stores all filters and actions.
|
||||
* @global array $wp_actions Stores the amount of times an action was triggered.
|
||||
* @global array $merged_filters Merges the filter hooks using this function.
|
||||
* @global array $wp_current_filter Stores the list of current filters with the current one last.
|
||||
* @staticvar array $backup_globals Backed up globals.
|
||||
*/
|
||||
function _restore_plugin_globals() {
|
||||
global $wp_filter, $wp_actions, $merged_filters, $wp_current_filter;
|
||||
|
||||
$backup_globals = _backup_plugin_globals( false );
|
||||
|
||||
if ( empty( $wp_filter ) ) {
|
||||
$wp_filter = $backup_globals['backup_wp_filter'];
|
||||
} else {
|
||||
$added_filters = $wp_filter;
|
||||
$wp_filter = $backup_globals['backup_wp_filter'];
|
||||
|
||||
foreach ( $added_filters as $tag => $callback_groups ) {
|
||||
// Loop through callback groups.
|
||||
foreach ( $callback_groups as $priority => $callbacks ) {
|
||||
|
||||
// Loop through callbacks.
|
||||
foreach ( $callbacks as $cb ) {
|
||||
add_filter( $tag, $cb['function'], $priority, $cb['accepted_args'] );
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
if ( empty ( $wp_actions ) ) {
|
||||
$wp_actions = $backup_globals['backup_wp_actions'];
|
||||
} else {
|
||||
$run_actions = $wp_actions;
|
||||
$wp_actions = $backup_globals['backup_wp_actions'];
|
||||
|
||||
foreach( $run_actions as $action => $count ) {
|
||||
if ( ! isset( $wp_actions[ $action ] ) ) {
|
||||
$wp_actions[ $action ] = 0;
|
||||
}
|
||||
|
||||
$wp_actions[ $action ] += $count;
|
||||
}
|
||||
}
|
||||
|
||||
if ( $merged_filters !== $backup_globals['backup_merged_filters'] ) {
|
||||
$merged_filters = array_merge_recursive( $merged_filters, $backup_globals['backup_merged_filters'] );
|
||||
}
|
||||
|
||||
if ( $wp_current_filter !== $backup_globals['backup_wp_current_filter'] ) {
|
||||
$wp_current_filter = array_merge_recursive( $wp_current_filter, $backup_globals['backup_wp_current_filter'] );
|
||||
}
|
||||
}
|
||||
|
@ -4,7 +4,7 @@
|
||||
*
|
||||
* @global string $wp_version
|
||||
*/
|
||||
$wp_version = '4.6-RC2-38249';
|
||||
$wp_version = '4.6-RC2-38252';
|
||||
|
||||
/**
|
||||
* Holds the WordPress DB revision, increments when changes are made to the WordPress DB schema.
|
||||
|
@ -83,9 +83,7 @@ wp_debug_mode();
|
||||
*/
|
||||
if ( WP_CACHE && apply_filters( 'enable_loading_advanced_cache_dropin', true ) ) {
|
||||
// For an advanced caching plugin to use. Uses a static drop-in because you would only want one.
|
||||
_backup_plugin_globals( true );
|
||||
WP_DEBUG ? include( WP_CONTENT_DIR . '/advanced-cache.php' ) : @include( WP_CONTENT_DIR . '/advanced-cache.php' );
|
||||
_restore_plugin_globals();
|
||||
}
|
||||
|
||||
// Define WP_LANG_DIR if not set.
|
||||
|
Loading…
Reference in New Issue
Block a user