### Eclipse Workspace Patch 1.0
#P wordpress
Index: wp-admin/includes/template.php
===================================================================
--- wp-admin/includes/template.php	(revision 11070)
+++ wp-admin/includes/template.php	(working copy)
@@ -2125,7 +2125,7 @@
 				if ( $user_can ) {
 					$actions['approve'] = "<a href='$approve_url' class='dim:the-comment-list:comment-$comment->comment_ID:unapproved:e7e7d3:e7e7d3:new=approved vim-a' title='" . __( 'Approve this comment' ) . "'>" . __( 'Approve' ) . '</a>';
 					$actions['unapprove'] = "<a href='$unapprove_url' class='dim:the-comment-list:comment-$comment->comment_ID:unapproved:e7e7d3:e7e7d3:new=unapproved vim-u' title='" . __( 'Unapprove this comment' ) . "'>" . __( 'Unapprove' ) . '</a>';
-					if ( $comment_status ) { // not looking at all comments
+					if ( $comment_status && 'all' != $comment_status ) { // not looking at all comments
 						if ( 'approved' == $the_comment_status ) {
 							$actions['unapprove'] = "<a href='$unapprove_url' class='delete:the-comment-list:comment-$comment->comment_ID:e7e7d3:action=dim-comment&amp;new=unapproved vim-u vim-destructive' title='" . __( 'Unapprove this comment' ) . "'>" . __( 'Unapprove' ) . '</a>';
 							unset($actions['approve']);
@@ -3453,10 +3453,22 @@
 			}
 			break;
 	}
+	// TODO: move help output into $extra_metas array.
+	// TODO: move screen options output into $extra_metas array.
+	// TODO: update css and js files to finish
+	$extra_metas = apply_filters('screen_meta_extra_metas', array(), $screen);	
 ?>
 <div id="screen-meta">
 <?php
-	if ( $show_screen ) :
+	if ( $count = count($extra_metas)) :
+		$values = array_values($extra_metas);
+		for($i = 0; $i < $count; $i++) {
+			$extra_meta = $values[$i]; 
+			printf('<div id="screen-meta-%d-wrap" class="screen-metas-wrap hidden">%s</div>', $i, $extra_meta[1]);
+		}
+ 	endif;
+
+ 	if ( $show_screen ) :
 ?>
 <div id="screen-options-wrap" class="hidden">
 	<form id="adv-settings" action="" method="post">
@@ -3517,7 +3529,12 @@
 <a href="#screen-options" id="show-settings-link" class="show-settings"><?php _e('Screen Options') ?></a>
 </div>
 <?php } ?>
+<?php $i = 0; foreach( $extra_metas as $extra_meta ) { ?>
+<div id="screen-meta-<?php echo $i; ?>-link-wrap" class="screen-metas-link-wrap hide-if-no-js screen-meta-toggle">
+<a href="#screen-meta-<?php echo $i; ?>" id="screen-meta-<?php echo $i; ?>-link" class="screen-metas-link"><?php echo $extra_meta[0] ?></a>
 </div>
+<?php $i++; } ?>
+</div>
 </div>
 <?php
 }
