Make WordPress Core


Ignore:
Timestamp:
07/25/2019 01:06:45 AM (5 years ago)
Author:
SergeyBiryukov
Message:

Coding Standards: Use correct variable in wp_dropdown_categories() after [45667].

See #45059.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/wp-includes/category-template.php

    r45667 r45668  
    366366    }
    367367
    368     // Parse incoming $args into an array and merge it with $defaults
    369     $parsed_args       = wp_parse_args( $args, $defaults );
    370     $option_none_value = $args['option_none_value'];
     368    // Parse incoming $args into an array and merge it with $defaults.
     369    $parsed_args = wp_parse_args( $args, $defaults );
     370
     371    $option_none_value = $parsed_args['option_none_value'];
    371372
    372373    if ( ! isset( $parsed_args['pad_counts'] ) && $parsed_args['show_count'] && $parsed_args['hierarchical'] ) {
Note: See TracChangeset for help on using the changeset viewer.