diff --git wp-admin/includes/class-wp-list-table.php wp-admin/includes/class-wp-list-table.php
index 13a688c..3bcfc04 100644
|
|
|
class WP_List_Table { |
| 478 | 478 | $current = $this->get_pagenum(); |
| 479 | 479 | |
| 480 | 480 | $current_url = ( is_ssl() ? 'https://' : 'http://' ) . $_SERVER['HTTP_HOST'] . $_SERVER['REQUEST_URI']; |
| | 481 | |
| | 482 | $current_url = remove_query_arg( array( 'hotkeys_highlight_last', 'hotkeys_highlight_first' ), $current_url ); |
| 481 | 483 | |
| 482 | 484 | $page_links = array(); |
| 483 | 485 | |
diff --git wp-admin/js/edit-comments.dev.js wp-admin/js/edit-comments.dev.js
index 5ca2fb6..3b03ee7 100644
|
|
|
$(document).ready(function(){ |
| 495 | 495 | var first_last, l; |
| 496 | 496 | |
| 497 | 497 | first_last = 'next' == which? 'first' : 'last'; |
| 498 | | l = $('.'+which+'.page-numbers'); |
| | 498 | l = $('.tablenav-pages .'+which+'-page:not(.disabled)'); |
| 499 | 499 | if (l.length) |
| 500 | 500 | window.location = l[0].href.replace(/\&hotkeys_highlight_(first|last)=1/g, '')+'&hotkeys_highlight_'+first_last+'=1'; |
| 501 | 501 | } |