Customize: Pass missing parameter to dynamic `option_{$option}` filter in `WP_Customize_Widgets::capture_filter_pre_get_option()`.
Props dlh. Fixes #44770. Built from https://develop.svn.wordpress.org/branches/4.9@43611 git-svn-id: http://core.svn.wordpress.org/branches/4.9@43440 1a063a9b-81f0-0310-95a4-ce76da25c4cd
This commit is contained in:
parent
fcfa34bd6c
commit
cb0da304a4
|
@ -1953,7 +1953,7 @@ final class WP_Customize_Widgets {
|
||||||
$value = $this->_captured_options[ $option_name ];
|
$value = $this->_captured_options[ $option_name ];
|
||||||
|
|
||||||
/** This filter is documented in wp-includes/option.php */
|
/** This filter is documented in wp-includes/option.php */
|
||||||
$value = apply_filters( 'option_' . $option_name, $value );
|
$value = apply_filters( 'option_' . $option_name, $value, $option_name );
|
||||||
}
|
}
|
||||||
|
|
||||||
return $value;
|
return $value;
|
||||||
|
|
|
@ -4,7 +4,7 @@
|
||||||
*
|
*
|
||||||
* @global string $wp_version
|
* @global string $wp_version
|
||||||
*/
|
*/
|
||||||
$wp_version = '4.9.9-alpha-43610';
|
$wp_version = '4.9.9-alpha-43611';
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Holds the WordPress DB revision, increments when changes are made to the WordPress DB schema.
|
* Holds the WordPress DB revision, increments when changes are made to the WordPress DB schema.
|
||||||
|
|
Loading…
Reference in New Issue