From d651587a0dc58d32f65dc21255789db5b4bd7a85 Mon Sep 17 00:00:00 2001 From: Drew Jaynes Date: Wed, 9 Sep 2015 15:44:46 +0000 Subject: [PATCH] Docs: Use the `$widget_links_args` parameter in the hook doc for the `widget_links_args` filter, introduced when the args array was split out to a variable in [33971]. See #20788. git-svn-id: https://develop.svn.wordpress.org/trunk@33978 602fd350-edb4-49c9-b593-d223f7449a82 --- src/wp-includes/widgets/class-wp-widget-links.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/wp-includes/widgets/class-wp-widget-links.php b/src/wp-includes/widgets/class-wp-widget-links.php index e61e72c7bb..32d6244558 100644 --- a/src/wp-includes/widgets/class-wp-widget-links.php +++ b/src/wp-includes/widgets/class-wp-widget-links.php @@ -53,8 +53,8 @@ class WP_Widget_Links extends WP_Widget { * * @see wp_list_bookmarks() * - * @param array $args An array of arguments to retrieve the links list. - * @param array $instance The settings for the particular instance of the widget. + * @param array $widget_links_args An array of arguments to retrieve the links list. + * @param array $instance The settings for the particular instance of the widget. */ wp_list_bookmarks( apply_filters( 'widget_links_args', $widget_links_args, $instance ) ); }