mirror of
git://develop.git.wordpress.org/
synced 2025-04-05 12:42:35 +02:00
Customize: Pass missing parameter to dynamic option_{$option}
filter in WP_Customize_Widgets::capture_filter_pre_get_option()
.
This prevents a potential fatal error from an `ArgumentCountError` exception in PHP 7.1 or greater Props dlh. Merges [43561] to the 5.0 branch. Fixes #44770. git-svn-id: https://develop.svn.wordpress.org/branches/5.0@44387 602fd350-edb4-49c9-b593-d223f7449a82
This commit is contained in:
parent
c49005aca2
commit
d55618e69c
@ -1953,7 +1953,7 @@ final class WP_Customize_Widgets {
|
||||
$value = $this->_captured_options[ $option_name ];
|
||||
|
||||
/** 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;
|
||||
|
Loading…
x
Reference in New Issue
Block a user