diff --git a/ChangeLog b/ChangeLog index e98b3fed36..9155f19e41 100644 --- a/ChangeLog +++ b/ChangeLog @@ -76,6 +76,7 @@ explanation - 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 36bfbaeb18..235b067512 100644 --- a/js/tbl_zoom_plot_jqplot.js +++ b/js/tbl_zoom_plot_jqplot.js @@ -159,6 +159,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(), @@ -183,6 +184,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(), @@ -206,6 +208,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(), @@ -227,6 +230,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(), @@ -399,6 +403,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, @@ -595,6 +600,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],