Make WordPress Core


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

Revert [9413]

File:
1 edited

Legend:

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

    r9413 r9414  
    243243
    244244<?php if ( $comments ) { ?>
    245 
    246 <ol id="the-comment-list" class="list:comment">
     245<table class="widefat">
     246<thead>
     247    <tr>
     248<?php print_column_headers('comment'); ?>
     249    </tr>
     250</thead>
     251
     252<tfoot>
     253    <tr>
     254<?php print_column_headers('comment', false); ?>
     255    </tr>
     256</tfoot>
     257
     258<tbody id="the-comment-list" class="list:comment">
    247259<?php
    248260    foreach ($comments as $comment)
    249261        _wp_comment_row( $comment->comment_ID, $mode, $comment_status );
    250262?>
    251 </ol>
    252 <ol id="the-extra-comment-list" class="list:comment" style="display: none;">
     263</tbody>
     264<tbody id="the-extra-comment-list" class="list:comment" style="display: none;">
    253265<?php
    254266    foreach ($extra_comments as $comment)
    255267        _wp_comment_row( $comment->comment_ID, $mode, $comment_status );
    256268?>
    257 </ol>
     269</tbody>
     270</table>
    258271
    259272<div class="tablenav">
     
    318331
    319332<?php
    320 wp_comment_reply('-1', true, 'detail', false);
     333wp_comment_reply('-1', true, 'detail');
    321334include('admin-footer.php'); ?>
Note: See TracChangeset for help on using the changeset viewer.