Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/phpmyadmin/phpmyadmin.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMichal Čihař <mcihar@suse.cz>2013-05-22 17:45:58 +0400
committerMichal Čihař <mcihar@suse.cz>2013-05-24 11:59:38 +0400
commit31cfc4e34e553dfedfa0b48ea2460b5640d95254 (patch)
tree23cc9e359c043e82fa988c87799d5bef4c6416c1 /js/tbl_select.js
parente03449460ab1d343b4ac1d838fdf53354bb2d054 (diff)
Hook SQL highlighter to more places
Unfortunately there are quite many places where SQL query might appear, hopefully I've made it correctly.
Diffstat (limited to 'js/tbl_select.js')
-rw-r--r--js/tbl_select.js1
1 files changed, 1 insertions, 0 deletions
diff --git a/js/tbl_select.js b/js/tbl_select.js
index 742e17fb25..7df822864a 100644
--- a/js/tbl_select.js
+++ b/js/tbl_select.js
@@ -128,6 +128,7 @@ AJAX.registerOnload('tbl_select.js', function () {
} else {
$("#sqlqueryresults").html(data.error);
}
+ PMA_highlightSQL($('#sqlqueryresults'));
}); // end $.post()
});