Merge remote-tracking branch 'origin/master'

This commit is contained in:
Weblate 2015-03-19 10:24:02 +01:00
commit abbd50f1b9
2 changed files with 7 additions and 0 deletions

View File

@ -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

View File

@ -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],