Index: wp-admin/edit.php
===================================================================
--- wp-admin/edit.php	(revision 38709)
+++ wp-admin/edit.php	(working copy)
@@ -316,13 +316,32 @@
 <div class="wrap">
 <h1><?php
 echo esc_html( $post_type_object->labels->name );
-if ( current_user_can( $post_type_object->cap->create_posts ) )
+if ( current_user_can( $post_type_object->cap->create_posts ) ) {
 	echo ' <a href="' . esc_url( admin_url( $post_new_file ) ) . '" class="page-title-action">' . esc_html( $post_type_object->labels->add_new ) . '</a>';
 
+}
+
 if ( isset( $_REQUEST['s'] ) && strlen( $_REQUEST['s'] ) ) {
 	/* translators: %s: search keywords */
 	printf( ' <span class="subtitle">' . __( 'Search results for &#8220;%s&#8221;' ) . '</span>', get_search_query() );
 }
+
+if ( ! empty( $_REQUEST['m'] ) || ! empty( $_REQUEST['cat'] ) || !empty( $_REQUEST['author'] ) ) {
+	$post_filters = array();
+	if ( ! empty( $_REQUEST['cat'] )  ) {
+		$post_filters[] = single_cat_title( '', false );
+	}
+	
+	if ( ! empty( $_REQUEST['author'] ) ) {
+		$post_filters[] = get_user_meta( $_REQUEST['author'], 'nickname', true );
+	}
+
+	if ( ! empty( $_REQUEST['m'] ) ) {
+		/* translators: 1: month name, 2: 4-digit year */
+		$post_filters[] = sprintf( __( '%1$s %2$d' ), $wp_locale->get_month( substr( $_REQUEST['m'], 4, 2 ) ), substr( $_REQUEST['m'], 0, 4 ) );
+	}
+	printf( ' <span class="subtitle">' . __( 'Showing %s from: %s' ) . '</span>', strtolower( $post_type_object->label ), implode(', ', $post_filters ) );
+}
 ?></h1>
 
 <?php
Index: wp-admin/includes/class-wp-posts-list-table.php
===================================================================
--- wp-admin/includes/class-wp-posts-list-table.php	(revision 38709)
+++ wp-admin/includes/class-wp-posts-list-table.php	(working copy)
@@ -462,6 +462,7 @@
 
 			$this->months_dropdown( $this->screen->post_type );
 			$this->categories_dropdown( $this->screen->post_type );
+			$this->authors_dropdown( $this->screen->post_type );
 
 			/**
 			 * Fires before the Filter button on the Posts and Pages list tables.
