diff --git a/wp-admin/edit.php b/wp-admin/edit.php index a1e7ebce90..98b333198b 100644 --- a/wp-admin/edit.php +++ b/wp-admin/edit.php @@ -226,12 +226,12 @@ if ( $user_posts ) { if ( isset( $_GET['author'] ) && ( $_GET['author'] == $current_user->ID ) ) $class = ' class="current"'; $status_links[] = "
  • " . sprintf( _nx( 'Mine (%s)', 'Mine (%s)', $user_posts_count, 'posts' ), number_format_i18n( $user_posts_count ) ) . ''; - $allposts = '?all_posts=1'; + $allposts = '&all_posts=1'; } $total_posts = array_sum( (array) $num_posts ) - $num_posts->trash; $class = empty($class) && empty($_GET['post_status']) ? ' class="current"' : ''; -$status_links[] = "
  • " . sprintf( _nx( 'All (%s)', 'All (%s)', $total_posts, 'posts' ), number_format_i18n( $total_posts ) ) . ''; +$status_links[] = "
  • " . sprintf( _nx( 'All (%s)', 'All (%s)', $total_posts, 'posts' ), number_format_i18n( $total_posts ) ) . ''; foreach ( get_post_stati(array(), 'objects') as $status ) { $class = '';