Make WordPress Core


Ignore:
Timestamp:
01/09/2016 01:44:31 AM (9 years ago)
Author:
johnbillion
Message:

Docs: @param fixes for a variety of docblocks.

See #32246

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/wp-admin/includes/list-table.php

    r34897 r36232  
    7474 *
    7575 * @since 2.7.0
     76 *
     77 * @param string|WP_Screen $screen  The screen hook name or screen object.
     78 * @param bool             $with_id Whether to set the id attribute or not.
    7679 */
    77 function print_column_headers($screen, $id = true) {
     80function print_column_headers( $screen, $with_id = true ) {
    7881    $wp_list_table = new _WP_List_Table_Compat($screen);
    7982
    80     $wp_list_table->print_column_headers($id);
     83    $wp_list_table->print_column_headers( $with_id );
    8184}
    8285
Note: See TracChangeset for help on using the changeset viewer.