Changeset 9028 for trunk/wp-admin/includes/template.php
- Timestamp:
- 09/29/2008 09:26:21 AM (17 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/wp-admin/includes/template.php
r9023 r9028 583 583 } 584 584 585 function print_column_headers( $type ) {585 function print_column_headers( $type, $id = true ) { 586 586 $columns = get_column_headers( $type ); 587 587 $hidden = (array) get_user_option( "manage-$type-columns-hidden" ); … … 615 615 $style = ' style="' . $style . '"'; 616 616 ?> 617 <th scope="col" <?php echo "id=\"$column_key\""; echo $class; echo $style?>><?php echo $column_display_name; ?></th>617 <th scope="col" <?php echo $id ? "id=\"$column_key\"" : ""; echo $class; echo $style; ?>><?php echo $column_display_name; ?></th> 618 618 <?php } 619 619 }
Note: See TracChangeset
for help on using the changeset viewer.