diff --git a/wp-admin/includes/class-wp-posts-list-table.php b/wp-admin/includes/class-wp-posts-list-table.php index a63668b586..3277896b3f 100644 --- a/wp-admin/includes/class-wp-posts-list-table.php +++ b/wp-admin/includes/class-wp-posts-list-table.php @@ -174,6 +174,8 @@ class WP_Posts_List_Table extends WP_List_Table { $total_items = $post_counts[ $_REQUEST['post_status'] ]; } elseif ( isset( $_REQUEST['show_sticky'] ) && $_REQUEST['show_sticky'] ) { $total_items = $this->sticky_posts_count; + } elseif ( isset( $_GET['author'] ) && $_GET['author'] == get_current_user_id() ) { + $total_items = $this->user_posts_count; } else { $total_items = array_sum( $post_counts ); diff --git a/wp-includes/version.php b/wp-includes/version.php index e2a630bf32..61abf2c661 100644 --- a/wp-includes/version.php +++ b/wp-includes/version.php @@ -4,7 +4,7 @@ * * @global string $wp_version */ -$wp_version = '4.4-alpha-34836'; +$wp_version = '4.4-alpha-34837'; /** * Holds the WordPress DB revision, increments when changes are made to the WordPress DB schema.