Changeset 9414 for trunk/wp-admin/edit.php
- Timestamp:
- 10/30/2008 03:50:21 PM (18 years ago)
- File:
-
- 1 edited
-
trunk/wp-admin/edit.php (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
trunk/wp-admin/edit.php
r9413 r9414 280 280 <br class="clear" /> 281 281 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"> 283 300 <?php 284 301 foreach ($comments as $comment) 285 302 _wp_comment_row( $comment->comment_ID, 'single', false, false ); 286 303 ?> 287 </ol> 304 </tbody> 305 </table> 288 306 289 307 <?php
Note: See TracChangeset
for help on using the changeset viewer.