Changeset 12728 for trunk/wp-admin/edit-post-rows.php
- Timestamp:
- 01/15/2010 04:58:36 PM (15 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/wp-admin/edit-post-rows.php
r11768 r12728 14 14 <thead> 15 15 <tr> 16 <?php print_column_headers( 'edit'); ?>16 <?php print_column_headers( $current_screen ); ?> 17 17 </tr> 18 18 </thead> … … 20 20 <tfoot> 21 21 <tr> 22 <?php print_column_headers( 'edit', false); ?>22 <?php print_column_headers($current_screen, false); ?> 23 23 </tr> 24 24 </tfoot> 25 25 26 26 <tbody> 27 <?php post_rows(); ?> 27 <?php 28 if ( $post_type_object->hierarchical ) 29 page_rows($posts, $pagenum, $per_page); 30 else 31 post_rows(); 32 ?> 28 33 </tbody> 29 34 </table>
Note: See TracChangeset
for help on using the changeset viewer.