From 8f1bd009b0d866572866d7eb5c6be99e9079c5fd Mon Sep 17 00:00:00 2001 From: Madhura Jayaratne Date: Thu, 19 Mar 2015 14:48:47 +0530 Subject: [PATCH] bug #4810 Broken find and replace Signed-off-by: Madhura Jayaratne --- ChangeLog | 1 + js/tbl_zoom_plot_jqplot.js | 6 ++++++ 2 files changed, 7 insertions(+) diff --git a/ChangeLog b/ChangeLog index 0af052663a..e9e39409e1 100644 --- a/ChangeLog +++ b/ChangeLog @@ -5,6 +5,7 @@ phpMyAdmin - ChangeLog - bug #4803 "Show hidden items" is sometimes hidden - bug #4807 Breaks when sorting by multiple columns while using UNION - bug #4798 Missing column when exporting in sql +- bug #4810 Broken find and replace 4.3.12.0 (2015-03-14) - bug #4746 Right-aligned columns have left-aligned header diff --git a/js/tbl_zoom_plot_jqplot.js b/js/tbl_zoom_plot_jqplot.js index 5057ec4435..e8db090a4f 100644 --- a/js/tbl_zoom_plot_jqplot.js +++ b/js/tbl_zoom_plot_jqplot.js @@ -154,6 +154,7 @@ AJAX.registerOnload('tbl_zoom_plot_jqplot.js', function () { $.post('tbl_zoom_select.php', { 'ajax_request' : true, 'change_tbl_info' : true, + 'server' : PMA_commonParams.get('server'), 'db' : PMA_commonParams.get('db'), 'table' : PMA_commonParams.get('table'), 'field' : $('#tableid_0').val(), @@ -178,6 +179,7 @@ AJAX.registerOnload('tbl_zoom_plot_jqplot.js', function () { $.post('tbl_zoom_select.php', { 'ajax_request' : true, 'change_tbl_info' : true, + 'server' : PMA_commonParams.get('server'), 'db' : PMA_commonParams.get('db'), 'table' : PMA_commonParams.get('table'), 'field' : $('#tableid_1').val(), @@ -201,6 +203,7 @@ AJAX.registerOnload('tbl_zoom_plot_jqplot.js', function () { $.post('tbl_zoom_select.php', { 'ajax_request' : true, 'change_tbl_info' : true, + 'server' : PMA_commonParams.get('server'), 'db' : PMA_commonParams.get('db'), 'table' : PMA_commonParams.get('table'), 'field' : $('#tableid_2').val(), @@ -222,6 +225,7 @@ AJAX.registerOnload('tbl_zoom_plot_jqplot.js', function () { $.post('tbl_zoom_select.php', { 'ajax_request' : true, 'change_tbl_info' : true, + 'server' : PMA_commonParams.get('server'), 'db' : PMA_commonParams.get('db'), 'table' : PMA_commonParams.get('table'), 'field' : $('#tableid_3').val(), @@ -394,6 +398,7 @@ AJAX.registerOnload('tbl_zoom_plot_jqplot.js', function () { //Post SQL query to sql.php $.post('sql.php', { 'token' : PMA_commonParams.get('token'), + 'server' : PMA_commonParams.get('server'), 'db' : PMA_commonParams.get('db'), 'ajax_request' : true, 'sql_query' : sql_query, @@ -590,6 +595,7 @@ AJAX.registerOnload('tbl_zoom_plot_jqplot.js', function () { var post_params = { 'ajax_request' : true, 'get_data_row' : true, + 'server' : PMA_commonParams.get('server'), 'db' : PMA_commonParams.get('db'), 'table' : PMA_commonParams.get('table'), 'where_clause' : data[3],