Merge branch 'master' of https://github.com/phpmyadmin/phpmyadmin
This commit is contained in:
commit
7f8c708dde
@ -57,6 +57,7 @@ phpMyAdmin - ChangeLog
|
||||
- bug #4510 QBE generates wrong query
|
||||
+ rfe #1594 Use plain English descriptors instead of script names for icon link destinations
|
||||
+ rfe #1541 Disable foreign key checks for some operations
|
||||
- bug #4957 "With selected" links doesn't work in table browse
|
||||
|
||||
4.4.10.0 (not yet released)
|
||||
- bug #4950 Issues in database selection for replication
|
||||
|
||||
@ -609,7 +609,7 @@ AJAX.registerOnload('sql.js', function () {
|
||||
$('body').on('click', 'form[name="resultsForm"].ajax button[name="submit_mult"], form[name="resultsForm"].ajax input[name="submit_mult"]', function (e) {
|
||||
e.preventDefault();
|
||||
var $button = $(this);
|
||||
var $form = $button.parent('form');
|
||||
var $form = $button.closest('form');
|
||||
var submitData = $form.serialize() + '&ajax_request=true&ajax_page_request=true&submit_mult=' + $button.val();
|
||||
PMA_ajaxShowMessage();
|
||||
$.post($form.attr('action'), submitData, AJAX.responseHandler);
|
||||
|
||||
Loading…
Reference in New Issue
Block a user