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:
authorNisarg Jhaveri <nisargjhaveri@gmail.com>2015-06-17 21:59:04 +0300
committerNisarg Jhaveri <nisargjhaveri@gmail.com>2015-06-18 13:22:13 +0300
commite524023def258a74240f98f139ff050aa57218d4 (patch)
treede8c2cd78f8935bf9b93db340f2547fa614141e6 /js/functions.js
parent734d0684e5b7d634783d71b3575ccefbd6256bb5 (diff)
SQL debugging in console
Signed-off-by: Nisarg Jhaveri <nisargjhaveri@gmail.com>
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 662cc0ffea..2868e3144e 100644
--- a/js/functions.js
+++ b/js/functions.js
@@ -1831,7 +1831,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) {
@@ -3924,6 +3925,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);
@@ -3941,7 +3943,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.