From 7322d3f35eeb1e203a673bdde6c7de3186808b19 Mon Sep 17 00:00:00 2001 From: Sergey Biryukov Date: Sun, 15 Sep 2019 10:31:54 +0000 Subject: [PATCH] Code Modernisation: Use the spread operator in `wp_register_sidebar_widget()`. Rather than relying `func_get_args()` to retrieve arbitrary function arguments, we can now use the spread operator to assign them directly to a variable. Missed in [45629]. Props jrf. See #47678. Built from https://develop.svn.wordpress.org/trunk@46122 git-svn-id: http://core.svn.wordpress.org/trunk@45934 1a063a9b-81f0-0310-95a4-ce76da25c4cd --- wp-includes/version.php | 2 +- wp-includes/widgets.php | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/wp-includes/version.php b/wp-includes/version.php index bcfd0b7b94..7d7f0c9a0b 100644 --- a/wp-includes/version.php +++ b/wp-includes/version.php @@ -13,7 +13,7 @@ * * @global string $wp_version */ -$wp_version = '5.3-alpha-46121'; +$wp_version = '5.3-alpha-46122'; /** * Holds the WordPress DB revision, increments when changes are made to the WordPress DB schema. diff --git a/wp-includes/widgets.php b/wp-includes/widgets.php index 45666f68d2..13604502f2 100644 --- a/wp-includes/widgets.php +++ b/wp-includes/widgets.php @@ -354,7 +354,7 @@ function is_registered_sidebar( $sidebar_id ) { * } * @param mixed ...$params Optional additional parameters to pass to the callback function when it's called. */ -function wp_register_sidebar_widget( $id, $name, $output_callback, $options = array() ) { +function wp_register_sidebar_widget( $id, $name, $output_callback, $options = array(), ...$params ) { global $wp_registered_widgets, $wp_registered_widget_controls, $wp_registered_widget_updates, $_wp_deprecated_widgets_callbacks; $id = strtolower( $id ); @@ -377,7 +377,7 @@ function wp_register_sidebar_widget( $id, $name, $output_callback, $options = ar 'name' => $name, 'id' => $id, 'callback' => $output_callback, - 'params' => array_slice( func_get_args(), 4 ), + 'params' => $params, ); $widget = array_merge( $widget, $options );