Make WordPress Core


Ignore:
Timestamp:
10/30/2008 03:50:21 PM (18 years ago)
Author:
ryan
Message:

Revert [9413]

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/wp-admin/edit.php

    r9413 r9414  
    280280<br class="clear" />
    281281
    282 <ol id="the-comment-list" class="list:comment">
     282<table class="widefat" style="margin-top: .5em">
     283<thead>
     284  <tr>
     285    <th scope="col"><?php _e('Comment') ?></th>
     286    <th scope="col"><?php _e('Author') ?></th>
     287    <th scope="col"><?php _e('Submitted') ?></th>
     288  </tr>
     289</thead>
     290
     291<tfoot>
     292  <tr>
     293    <th scope="col"><?php _e('Comment') ?></th>
     294    <th scope="col"><?php _e('Author') ?></th>
     295    <th scope="col"><?php _e('Submitted') ?></th>
     296  </tr>
     297</tfoot>
     298
     299<tbody id="the-comment-list" class="list:comment">
    283300<?php
    284301    foreach ($comments as $comment)
    285302        _wp_comment_row( $comment->comment_ID, 'single', false, false );
    286303?>
    287 </ol>
     304</tbody>
     305</table>
    288306
    289307<?php
Note: See TracChangeset for help on using the changeset viewer.