From 50ca35576f0009729309390aed037631691feb09 Mon Sep 17 00:00:00 2001 From: Atul Pratap Singh Date: Wed, 15 May 2013 23:23:07 +0530 Subject: [PATCH] Use live here, fix bug#3936 --- ChangeLog | 1 + js/functions.js | 4 ++-- 2 files changed, 3 insertions(+), 2 deletions(-) diff --git a/ChangeLog b/ChangeLog index 6598940a26..85263ef699 100644 --- a/ChangeLog +++ b/ChangeLog @@ -12,6 +12,7 @@ phpMyAdmin - ChangeLog - bug #3919 PropertiesIconic not honored - bug #3930 Databases to choose for specific privileges show up escaped - bug #3910 Export database with empty table as a php array, does not produce valid PHP +- bug #3936 Query profiler chart not loading from SQL Query page 4.0.1.0 (2013-05-14) - bug #3879 Import broken for CSV using LOAD DATA diff --git a/js/functions.js b/js/functions.js index 1984863fbc..35995346a3 100644 --- a/js/functions.js +++ b/js/functions.js @@ -3551,7 +3551,7 @@ function PMA_getCellValue(td) { */ AJAX.registerTeardown('functions.js', function() { $('a.themeselect').die('click'); - $('.autosubmit').unbind('change'); + $('.autosubmit').die('change'); $('a.take_theme').unbind('click'); }); @@ -3571,7 +3571,7 @@ AJAX.registerOnload('functions.js', function() { /** * Automatic form submission on change. */ - $('.autosubmit').change(function(e) { + $('.autosubmit').live('change', function(e) { $(this).closest('form').submit(); });