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:
authorMarc Delisle <marc@infomarc.info>2015-06-18 13:29:12 +0300
committerMarc Delisle <marc@infomarc.info>2015-06-18 13:29:12 +0300
commitc852dcb228cdda71515c0706600ec21631e1425e (patch)
treee8d1a76d5d3a9162d42b36ec0adb84708680cd60 /js/functions.js
parent5eedd7b40b4ef2c37d47ec5db17e170a5381dfa9 (diff)
parente524023def258a74240f98f139ff050aa57218d4 (diff)
Merge pull request #1736 from nisargjhaveri/debug_console
[WIP] SQL debugging in console
Diffstat (limited to 'js/functions.js')
-rw-r--r--js/functions.js7
1 files changed, 5 insertions, 2 deletions
diff --git a/js/functions.js b/js/functions.js
index f3023f460b..cbeda1e569 100644
--- a/js/functions.js
+++ b/js/functions.js
@@ -1845,7 +1845,8 @@ function codemirrorAutocompleteOnInputRead(instance) {
'ajax_request': true,
'token': PMA_commonParams.get('token'),
'server': PMA_commonParams.get('server'),
- 'db': PMA_commonParams.get('db')
+ 'db': PMA_commonParams.get('db'),
+ 'no_debug': true
};
var columnHintRender = function(elem, self, data) {
@@ -3940,6 +3941,7 @@ AJAX.registerOnload('functions.js', function () {
if ($('#update_recent_tables').length) {
$.get(
$('#update_recent_tables').attr('href'),
+ {no_debug: true},
function (data) {
if (typeof data !== 'undefined' && data.success === true) {
$('#pma_recent_list').html(data.list);
@@ -3957,7 +3959,8 @@ AJAX.registerOnload('functions.js', function () {
data: {
favorite_tables: (isStorageSupported('localStorage') && typeof window.localStorage.favorite_tables !== 'undefined')
? window.localStorage.favorite_tables
- : ''
+ : '',
+ no_debug: true
},
success: function (data) {
// Update localStorage.