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
This commit is contained in:
Sergey Biryukov 2019-07-25 01:07:54 +00:00
parent 18bd01985b
commit 5522be31e7
2 changed files with 5 additions and 4 deletions

View File

@ -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;

View File

@ -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.