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
path: root/js
diff options
context:
space:
mode:
authorMaurício Meneghini Fauth <mauricio@fauth.dev>2020-07-03 23:45:58 +0300
committerMaurício Meneghini Fauth <mauricio@fauth.dev>2020-07-03 23:45:58 +0300
commitd09ab9bc9d634ad08b866d42bb8c4109869d38d2 (patch)
treecb6c3478fa0e376339a827105f5a3a2606af1e23 /js
parentcf678a04fcb1444c26640c903fcea41fd3987fdf (diff)
Check where clause signature in TableSearchController
Signed-off-by: Maurício Meneghini Fauth <mauricio@fauth.dev>
Diffstat (limited to 'js')
-rw-r--r--js/tbl_zoom_plot_jqplot.js6
1 files changed, 4 insertions, 2 deletions
diff --git a/js/tbl_zoom_plot_jqplot.js b/js/tbl_zoom_plot_jqplot.js
index 897caed666..469c4828e7 100644
--- a/js/tbl_zoom_plot_jqplot.js
+++ b/js/tbl_zoom_plot_jqplot.js
@@ -558,7 +558,8 @@ AJAX.registerOnload('tbl_zoom_plot_jqplot.js', function () {
value[dataLabel], // for highlighter
// (may set an undefined value)
value.where_clause, // for click on point
- key // key from searchedData
+ key, // key from searchedData
+ value.where_clause_sign
]);
});
@@ -591,7 +592,8 @@ AJAX.registerOnload('tbl_zoom_plot_jqplot.js', function () {
'server' : PMA_commonParams.get('server'),
'db' : PMA_commonParams.get('db'),
'table' : PMA_commonParams.get('table'),
- 'where_clause' : data[3]
+ 'where_clause' : data[3],
+ 'where_clause_sign' : data[5]
};
$.post('tbl_zoom_select.php', post_params, function (data) {