Revert [9413]

git-svn-id: https://develop.svn.wordpress.org/trunk@9414 602fd350-edb4-49c9-b593-d223f7449a82
This commit is contained in:
Ryan Boren
2008-10-30 15:50:21 +00:00
parent 13e64e6a9c
commit 7e5ff53d55
10 changed files with 199 additions and 117 deletions
+20 -2
View File
@@ -279,12 +279,30 @@ if ( 1 == count($posts) && is_singular() ) :
<br class="clear" />
<ol id="the-comment-list" class="list:comment">
<table class="widefat" style="margin-top: .5em">
<thead>
<tr>
<th scope="col"><?php _e('Comment') ?></th>
<th scope="col"><?php _e('Author') ?></th>
<th scope="col"><?php _e('Submitted') ?></th>
</tr>
</thead>
<tfoot>
<tr>
<th scope="col"><?php _e('Comment') ?></th>
<th scope="col"><?php _e('Author') ?></th>
<th scope="col"><?php _e('Submitted') ?></th>
</tr>
</tfoot>
<tbody id="the-comment-list" class="list:comment">
<?php
foreach ($comments as $comment)
_wp_comment_row( $comment->comment_ID, 'single', false, false );
?>
</ol>
</tbody>
</table>
<?php
wp_comment_reply();