Index: admin-ajax.php
===================================================================
--- admin-ajax.php	(revision 18623)
+++ admin-ajax.php	(working copy)
@@ -1225,9 +1225,12 @@
 
 	$wp_list_table = _get_list_table('WP_Posts_List_Table');
 
-	$mode = $_POST['post_view'];
-	$wp_list_table->display_rows( array( get_post( $_POST['post_ID'] ) ) );
-
+	$post_type = $_POST['post_type'];
+	$posts = get_posts( array('p' => $post_ID, 'post_type' => $post_type, 'post_status' => 'any', 'suppress_filters' => FALSE, 'posts_per_page' => 1) );
+	
+	if( isset($posts[0]) )
+		$wp_list_table->display_rows( array($posts[0]) );
+	
 	exit;
 	break;
 case 'inline-save-tax':
