Merge remote-tracking branch 'origin/QA_3_5'
This commit is contained in:
commit
9bdecb6a81
@ -70,6 +70,7 @@ phpMyAdmin - ChangeLog
|
||||
+ patch #3303195 [interface] Checkbox to have SQL input remain
|
||||
- patch #3472899 [export] Fixed CSV escape for the export
|
||||
- patch #3475424 [import] Fixed CSV escape for the import
|
||||
- bug #3482734 [interface] No warning on syntax error in search form
|
||||
|
||||
3.4.11.0 (not yet released)
|
||||
|
||||
|
||||
@ -73,7 +73,13 @@ $(document).ready(function() {
|
||||
PMA_init_slider();
|
||||
} else {
|
||||
// error message (zero rows)
|
||||
$("#sqlqueryresults").html(response['message']);
|
||||
if (response.message != undefined) {
|
||||
$("#sqlqueryresults").html(response['message']);
|
||||
}
|
||||
// other error (syntax error?)
|
||||
if (response.error != undefined) {
|
||||
$("#sqlqueryresults").html(response['error']);
|
||||
}
|
||||
}
|
||||
}) // end $.post()
|
||||
})
|
||||
|
||||
Loading…
Reference in New Issue
Block a user