Make WordPress Core


Ignore:
Timestamp:
10/30/2008 12:24:11 PM (17 years ago)
Author:
azaozz
Message:

Better comments listing, props Matt

File:
1 edited

Legend:

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

    r9363 r9413  
    280280<br class="clear" />
    281281
    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">
     282<ol id="the-comment-list" class="list:comment">
    300283<?php
    301284    foreach ($comments as $comment)
    302285        _wp_comment_row( $comment->comment_ID, 'single', false, false );
    303286?>
    304 </tbody>
    305 </table>
     287</ol>
    306288
    307289<?php
Note: See TracChangeset for help on using the changeset viewer.