Changeset 9414 for trunk/wp-admin/edit-comments.php
- Timestamp:
- 10/30/2008 03:50:21 PM (17 years ago)
- File:
-
- 1 edited
-
trunk/wp-admin/edit-comments.php (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
trunk/wp-admin/edit-comments.php
r9413 r9414 243 243 244 244 <?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"> 247 259 <?php 248 260 foreach ($comments as $comment) 249 261 _wp_comment_row( $comment->comment_ID, $mode, $comment_status ); 250 262 ?> 251 </ ol>252 < olid="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;"> 253 265 <?php 254 266 foreach ($extra_comments as $comment) 255 267 _wp_comment_row( $comment->comment_ID, $mode, $comment_status ); 256 268 ?> 257 </ol> 269 </tbody> 270 </table> 258 271 259 272 <div class="tablenav"> … … 318 331 319 332 <?php 320 wp_comment_reply('-1', true, 'detail' , false);333 wp_comment_reply('-1', true, 'detail'); 321 334 include('admin-footer.php'); ?>
Note: See TracChangeset
for help on using the changeset viewer.