Make WordPress Core

Ticket #62015: 62015.patch

File 62015.patch, 1.4 KB (added by truptikanzariya, 14 months ago)
  • src/wp-admin/includes/class-wp-posts-list-table.php

    diff --git a/src/wp-admin/includes/class-wp-posts-list-table.php b/src/wp-admin/includes/class-wp-posts-list-table.php
    index 1e27b931ab..b7da3af518 100644
    a b class WP_Posts_List_Table extends WP_List_Table { 
    723723                         *
    724724                         * @since 2.5.0
    725725                         *
    726                          * @param string[] $post_columns An associative array of column headings.
     726                         * @param string[] $posts_columns An associative array of column headings.
    727727                         */
    728728                        $posts_columns = apply_filters( 'manage_pages_columns', $posts_columns );
    729729                } else {
    class WP_Posts_List_Table extends WP_List_Table { 
    733733                         *
    734734                         * @since 1.5.0
    735735                         *
    736                          * @param string[] $post_columns An associative array of column headings.
     736                         * @param string[] $posts_columns An associative array of column headings.
    737737                         * @param string   $post_type    The post type slug.
    738738                         */
    739739                        $posts_columns = apply_filters( 'manage_posts_columns', $posts_columns, $post_type );
    class WP_Posts_List_Table extends WP_List_Table { 
    751751                 *
    752752                 * @since 3.0.0
    753753                 *
    754                  * @param string[] $post_columns An associative array of column headings.
     754                 * @param string[] $posts_columns An associative array of column headings.
    755755                 */
    756756                return apply_filters( "manage_{$post_type}_posts_columns", $posts_columns );
    757757        }