Merge remote-tracking branch 'origin/QA_3_5'

This commit is contained in:
Pootle server 2012-02-01 18:40:15 +01:00
commit 9bdecb6a81
2 changed files with 8 additions and 1 deletions

View File

@ -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)

View File

@ -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()
})