Changeset 36232 for trunk/src/wp-admin/includes/list-table.php
- Timestamp:
- 01/09/2016 01:44:31 AM (9 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/wp-admin/includes/list-table.php
r34897 r36232 74 74 * 75 75 * @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. 76 79 */ 77 function print_column_headers( $screen, $id = true) {80 function print_column_headers( $screen, $with_id = true ) { 78 81 $wp_list_table = new _WP_List_Table_Compat($screen); 79 82 80 $wp_list_table->print_column_headers( $id);83 $wp_list_table->print_column_headers( $with_id ); 81 84 } 82 85
Note: See TracChangeset
for help on using the changeset viewer.