Ticket #35620: 35620.1.diff
File 35620.1.diff, 1.2 KB (added by , 9 years ago) |
---|
-
src/wp-admin/includes/class-wp-list-table.php
763 763 $output = '<span class="displaying-num">' . sprintf( _n( '%s item', '%s items', $total_items ), number_format_i18n( $total_items ) ) . '</span>'; 764 764 765 765 $current = $this->get_pagenum(); 766 $removable_query_args = wp_removable_query_args(); 766 767 767 768 $current_url = set_url_scheme( 'http://' . $_SERVER['HTTP_HOST'] . $_SERVER['REQUEST_URI'] ); 768 769 769 $current_url = remove_query_arg( array( 'hotkeys_highlight_last', 'hotkeys_highlight_first' ), $current_url );770 $current_url = remove_query_arg( $removable_query_args, $current_url ); 770 771 771 772 $page_links = array(); 772 773 -
src/wp-includes/functions.php
865 865 'disabled', 866 866 'enabled', 867 867 'error', 868 'hotkeys_highlight_first', 869 'hotkeys_highlight_last', 868 870 'locked', 869 871 'message', 870 872 'same',