Changeset 9733 for trunk/wp-admin/upload.php
- Timestamp:
- 11/17/2008 06:01:00 PM (17 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/wp-admin/upload.php
r9686 r9733 298 298 299 299 <?php if ( isset($orphans) ) { ?> 300 <table class="widefat" >300 <table class="widefat" cellspacing="0"> 301 301 <thead> 302 302 <tr> … … 424 424 <br class="clear" /> 425 425 426 <table class="widefat" style="margin-top: .5em">426 <table class="widefat" cellspacing="0"> 427 427 <thead> 428 428 <tr> 429 <th scope="col"><?php _e('Comment') ?></th>430 <th scope="col"><?php _e('Date') ?></th>431 <th scope="col"><?php _e('Actions') ?></th>432 429 <th scope="col" class="column-comment"><?php _e('Comment') ?></th> 430 <th scope="col" class="column-author"><?php _e('Author') ?></th> 431 <th scope="col" class="column-date"><?php _e('Submitted') ?></th> 432 </tr> 433 433 </thead> 434 434 <tbody id="the-comment-list" class="list:comment"> 435 435 <?php 436 436 foreach ($comments as $comment) 437 _wp_comment_row( $comment->comment_ID, ' detail', false, false );437 _wp_comment_row( $comment->comment_ID, 'single', false, false ); 438 438 ?> 439 439 </tbody>
Note: See TracChangeset
for help on using the changeset viewer.