From ec6c7dbfdc8438e10f2cfcdaebe9ae95f3c1b915 Mon Sep 17 00:00:00 2001 From: desrosj Date: Thu, 3 Jan 2019 18:55:45 +0000 Subject: [PATCH] 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. Built from https://develop.svn.wordpress.org/branches/5.0@44387 git-svn-id: http://core.svn.wordpress.org/branches/5.0@44217 1a063a9b-81f0-0310-95a4-ce76da25c4cd --- wp-includes/class-wp-customize-widgets.php | 2 +- wp-includes/version.php | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/wp-includes/class-wp-customize-widgets.php b/wp-includes/class-wp-customize-widgets.php index a54794b06d..9df14c0f2f 100644 --- a/wp-includes/class-wp-customize-widgets.php +++ b/wp-includes/class-wp-customize-widgets.php @@ -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; diff --git a/wp-includes/version.php b/wp-includes/version.php index a84188e3b0..84cdbdf9d2 100644 --- a/wp-includes/version.php +++ b/wp-includes/version.php @@ -4,7 +4,7 @@ * * @global string $wp_version */ -$wp_version = '5.0.3-alpha-44384'; +$wp_version = '5.0.3-alpha-44387'; /** * Holds the WordPress DB revision, increments when changes are made to the WordPress DB schema.