Make WordPress Core

Ticket #47685: 47685.1.patch

File 47685.1.patch, 991 bytes (added by Mista-Flo, 5 years ago)
  • wp-admin/includes/class-wp-posts-list-table.php

    diff --git a/wp-admin/includes/class-wp-posts-list-table.php b/wp-admin/includes/class-wp-posts-list-table.php
    index 9be84ae2e5..bd4b211a54 100644
    a b class WP_Posts_List_Table extends WP_List_Table { 
    15761576                                                $users_opt['show_option_none'] = __( '— No Change —' );
    15771577                                        }
    15781578
     1579                                        /**
     1580                                         * Filters the arguments used to generate the Quick Edit authors drop-down.
     1581                                         *
     1582                                         * @since 5.3.0
     1583                                         *
     1584                                         * @see wp_dropdown_users()
     1585                                         *
     1586                                         * @param array $users_opt An array of arguments for wp_dropdown_users function.
     1587                                         * @param bool  $bulk A boolean to know if it's a bulk action or not.
     1588                                         */
     1589                                        $users_opt = apply_filters( 'quick_edit_authors_query_args', $users_opt, $bulk );
     1590
    15791591                                        $authors = wp_dropdown_users( $users_opt );
    15801592                                        if ( $authors ) :
    15811593                                                $authors_dropdown  = '<label class="inline-edit-author">';