Index: wp-admin/includes/template.php
===================================================================
--- wp-admin/includes/template.php	(revision 17369)
+++ wp-admin/includes/template.php	(working copy)
@@ -419,22 +419,30 @@
  * @param unknown_type $meta
  */
 function list_meta( $meta ) {
+	if ( empty($meta) )
+		return;
+
 	// Exit if no meta
-	if ( ! $meta ) {
-		echo '
+	foreach ( $meta as $_meta ) {
+		if ( '_' == $_meta['meta_key'][0] ) {
+			return;
+		}
+	}
+
+	// Display the table
+	echo '
 <table id="list-table" style="display: none;">
-	<thead>
-	<tr>
-		<th class="left">' . __( 'Name' ) . '</th>
-		<th>' . __( 'Value' ) . '</th>
-	</tr>
-	</thead>
-	<tbody id="the-list" class="list:meta">
-	<tr><td></td></tr>
-	</tbody>
+<thead>
+<tr>
+	<th class="left">' . __( 'Name' ) . '</th>
+	<th>' . __( 'Value' ) . '</th>
+</tr>
+</thead>
+<tbody id="the-list" class="list:meta">
+<tr><td></td></tr>
+</tbody>
 </table>'; //TBODY needed for list-manipulation JS
-		return;
-	}
+	return;
 	$count = 0;
 ?>
 <table id="list-table">
