From 5522be31e727c8ec48819cba2d58718cf820833b Mon Sep 17 00:00:00 2001 From: Sergey Biryukov Date: Thu, 25 Jul 2019 01:07:54 +0000 Subject: [PATCH] Coding Standards: Use correct variable in `wp_dropdown_categories()` after [45667]. See #45059. Built from https://develop.svn.wordpress.org/trunk@45668 git-svn-id: http://core.svn.wordpress.org/trunk@45479 1a063a9b-81f0-0310-95a4-ce76da25c4cd --- wp-includes/category-template.php | 7 ++++--- wp-includes/version.php | 2 +- 2 files changed, 5 insertions(+), 4 deletions(-) diff --git a/wp-includes/category-template.php b/wp-includes/category-template.php index fd06fa14e5..b60a557c85 100644 --- a/wp-includes/category-template.php +++ b/wp-includes/category-template.php @@ -365,9 +365,10 @@ function wp_dropdown_categories( $args = '' ) { $args['taxonomy'] = 'link_category'; } - // Parse incoming $args into an array and merge it with $defaults - $parsed_args = wp_parse_args( $args, $defaults ); - $option_none_value = $args['option_none_value']; + // Parse incoming $args into an array and merge it with $defaults. + $parsed_args = wp_parse_args( $args, $defaults ); + + $option_none_value = $parsed_args['option_none_value']; if ( ! isset( $parsed_args['pad_counts'] ) && $parsed_args['show_count'] && $parsed_args['hierarchical'] ) { $parsed_args['pad_counts'] = true; diff --git a/wp-includes/version.php b/wp-includes/version.php index f2acecc33f..35c2fc65a4 100644 --- a/wp-includes/version.php +++ b/wp-includes/version.php @@ -13,7 +13,7 @@ * * @global string $wp_version */ -$wp_version = '5.3-alpha-45667'; +$wp_version = '5.3-alpha-45668'; /** * Holds the WordPress DB revision, increments when changes are made to the WordPress DB schema.