Make WordPress Core

Ticket #51660: 51660.diff

File 51660.diff, 1.0 KB (added by hellofromTonya, 4 years ago)

Restores the "months_dropdown_results" filter back into main logic flow for it to be applied.

  • src/wp-admin/includes/class-wp-list-table.php

    diff --git a/src/wp-admin/includes/class-wp-list-table.php b/src/wp-admin/includes/class-wp-list-table.php
    index cdd07f076d..3faf5d46e0 100644
    a b class WP_List_Table { 
    625625                                        $post_type
    626626                                )
    627627                        );
    628 
    629                         /**
    630                          * Filters the 'Months' drop-down results.
    631                          *
    632                          * @since 3.7.0
    633                          *
    634                          * @param object[] $months    Array of the months drop-down query results.
    635                          * @param string   $post_type The post type.
    636                          */
    637                         $months = apply_filters( 'months_dropdown_results', $months, $post_type );
    638628                }
    639629
     630                /**
     631                 * Filters the 'Months' drop-down results.
     632                 *
     633                 * @since 3.7.0
     634                 *
     635                 * @param object[] $months    Array of the months drop-down query results.
     636                 * @param string   $post_type The post type.
     637                 */
     638                $months = apply_filters( 'months_dropdown_results', $months, $post_type );
     639
    640640                $month_count = count( $months );
    641641
    642642                if ( ! $month_count || ( 1 == $month_count && 0 == $months[0]->month ) ) {