- Bug #3151925 Page selector dropdown broken with ORDER BY query

- PMA_pageselector() had an unused parameter
This commit is contained in:
Marc Delisle
2011-01-08 15:14:00 -05:00
parent 45eb47fe14
commit 6094e6c644
4 changed files with 8 additions and 16 deletions

View File

@@ -295,11 +295,12 @@ $(document).ready(function() {
event.preventDefault();
PMA_ajaxShowMessage();
var $the_form = $(this).parent("form");
$.get($(this).attr('href'), $(this).serialize() + '&ajax_request=true', function(data) {
$.post($the_form.attr('action'), $the_form.serialize() + '&ajax_request=true', function(data) {
$("#sqlqueryresults").html(data);
$("#sqlqueryresults").trigger('appendAnchor');
}) // end $.get()
}) // end $.post()
})// end Paginate results with Page Selector
/**