Skip to content

Commit

Permalink
Fixed rendering of chart of columns with HTML inside
Browse files Browse the repository at this point in the history
Signed-off-by: Michal Čihař <michal@cihar.com>
  • Loading branch information
nijel committed Jun 22, 2016
1 parent 57ae483 commit 4d21b5c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion js/tbl_chart.js
Expand Up @@ -156,7 +156,7 @@ function drawChart() {

var columnNames = [];
$('select[name="chartXAxis"] option').each(function () {
columnNames.push($(this).text());
columnNames.push(escapeHtml($(this).text()));
});
try {
currentChart = PMA_queryChart(chart_data, columnNames, currentSettings);
Expand Down

0 comments on commit 4d21b5c

Please sign in to comment.