From 812033f092e4469f076350f967e72004ffe5db0a Mon Sep 17 00:00:00 2001 From: Sergey Biryukov <sergeybiryukov@git.wordpress.org> Date: Sun, 15 Sep 2019 10:30:16 +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. git-svn-id: https://develop.svn.wordpress.org/trunk@46122 602fd350-edb4-49c9-b593-d223f7449a82 --- src/wp-includes/widgets.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/wp-includes/widgets.php b/src/wp-includes/widgets.php index 45666f68d2..13604502f2 100644 --- a/src/wp-includes/widgets.php +++ b/src/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 );