Correct pagination when viewing the 'Mine' link on the post listing screen.

Fixes #19609
Props ocean90

Built from https://develop.svn.wordpress.org/trunk@34837


git-svn-id: http://core.svn.wordpress.org/trunk@34802 1a063a9b-81f0-0310-95a4-ce76da25c4cd
This commit is contained in:
John Blackbourn 2015-10-05 21:36:25 +00:00
parent ab413e89bf
commit 1e90e58da3
2 changed files with 3 additions and 1 deletions

View File

@ -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 );

View File

@ -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.