Merge remote-tracking branch 'origin/master'

This commit is contained in:
Weblate 2012-10-21 06:20:07 +02:00
commit 734ee71ed0
2 changed files with 7 additions and 3 deletions

View File

@ -48,6 +48,7 @@ VerboseMultiSubmit, ReplaceHelpImg
+ [import] Remove support for the unactive docSQL import format
- bug #3577443 [edit] "Browse foreign values" does not show on ajax edit
+ rfe #3522109 [browse] Grid editing: action to trigger it (or disable)
- bug #3578776 [search] Editing SQL not possible when no records found
3.5.4.0 (not yet released)
- bug #3570212 [edit] uuid_short() is a no-arguments function

View File

@ -97,9 +97,12 @@ $(function() {
$.post($search_form.attr('action'), values, function(data) {
PMA_ajaxRemoveMessage($msgbox);
if (data.success == true) {
// found results
$("#sqlqueryresults").html(data.message);
$("#sqlqueryresults").trigger('makegrid');
if (data.sql_query != null) { // zero rows
$("#sqlqueryresults").html(data.sql_query);
} else { // results found
$("#sqlqueryresults").html(data.message);
$("#sqlqueryresults").trigger('makegrid');
}
$('#tbl_search_form')
// workaround for bug #3168569 - Issue on toggling the "Hide search criteria" in chrome.
.slideToggle()