Index: wp-admin/includes/meta-boxes.php
===================================================================
--- wp-admin/includes/meta-boxes.php	(revision 13712)
+++ wp-admin/includes/meta-boxes.php	(working copy)
@@ -406,6 +406,17 @@
 <?php
 }
 
+/** 
+* Display comments for post table header 
+* 
+* @since 3.0
+* 
+* @param object $post 
+*/ 
+function post_comment_meta_box_thead($result) { 
+	unset($result['cb'], $result['response']);
+	return $result; 
+} 
 
 /**
  * Display comments for post.
@@ -425,13 +436,12 @@
 	}
 
 	wp_nonce_field( 'get-comments', 'add_comment_nonce', false );
+	add_filter('manage_edit-comments_columns', 'post_comment_meta_box_thead', 8, 1);
 ?>
 
 <table class="widefat comments-box fixed" cellspacing="0" style="display:none;">
 <thead><tr>
-    <th scope="col" class="column-author"><?php _e('Author') ?></th>
-    <th scope="col" class="column-comment">
-<?php /* translators: field name in comment form */ echo _x('Comment', 'noun'); ?></th>
+	<?php print_column_headers('edit-comments'); ?> 
 </tr></thead>
 <tbody id="the-comment-list" class="list:comment"></tbody>
 </table>
@@ -442,6 +452,7 @@
 		<script type="text/javascript">jQuery(document).ready(function(){commentsBox.get(<?php echo $total; ?>, 10);});</script>
 <?php
 	}
+	remove_filter('manage_edit-comments_columns', 'post_comment_meta_box_thead'); 
 	wp_comment_trashnotice();
 }
 
