Changeset 9413 for trunk/wp-admin/edit-comments.php
- Timestamp:
- 10/30/2008 12:24:11 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
r9363 r9413 243 243 244 244 <?php if ( $comments ) { ?> 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"> 245 246 <ol id="the-comment-list" class="list:comment"> 259 247 <?php 260 248 foreach ($comments as $comment) 261 249 _wp_comment_row( $comment->comment_ID, $mode, $comment_status ); 262 250 ?> 263 </ tbody>264 < tbodyid="the-extra-comment-list" class="list:comment" style="display: none;">251 </ol> 252 <ol id="the-extra-comment-list" class="list:comment" style="display: none;"> 265 253 <?php 266 254 foreach ($extra_comments as $comment) 267 255 _wp_comment_row( $comment->comment_ID, $mode, $comment_status ); 268 256 ?> 269 </tbody> 270 </table> 257 </ol> 271 258 272 259 <div class="tablenav"> … … 331 318 332 319 <?php 333 wp_comment_reply('-1', true, 'detail' );320 wp_comment_reply('-1', true, 'detail', false); 334 321 include('admin-footer.php'); ?>
Note: See TracChangeset
for help on using the changeset viewer.