Merge remote-tracking branch 'origin/master'
This commit is contained in:
commit
8faf31cba0
@ -39,6 +39,14 @@ phpMyAdmin - ChangeLog
|
||||
4.2.8.0 (not yet released)
|
||||
- bug #4516 Odd export behavior
|
||||
|
||||
4.2.7.1 (2014-08-17)
|
||||
- bug #4501 [security] XSS in table browse page
|
||||
- bug #4502 [security] Self-XSS in enum value editor
|
||||
- bug #4503 [security] Self-XSSes in monitor
|
||||
- bug #4504 [security] Self-XSS in query charts
|
||||
- bug #4505 [security] XSS in view operations page
|
||||
- bug #4517 [security] XSS in relation view
|
||||
|
||||
4.2.7.0 (2014-07-31)
|
||||
- bug Broken links on home page
|
||||
- bug #4494 Overlap in navigation panel
|
||||
|
||||
@ -2842,7 +2842,7 @@ AJAX.registerOnload('functions.js', function () {
|
||||
} else {
|
||||
title = PMA_messages.enum_columnVals.replace(
|
||||
/%s/,
|
||||
'"' + decodeURIComponent(colname) + '"'
|
||||
'"' + escapeHtml(decodeURIComponent(colname)) + '"'
|
||||
);
|
||||
}
|
||||
// Get the values as a string
|
||||
@ -3870,7 +3870,7 @@ AJAX.registerOnload('functions.js', function () {
|
||||
var question = PMA_messages.strDropTableStrongWarning + ' ';
|
||||
question += $.sprintf(
|
||||
PMA_messages.strDoYouReally,
|
||||
'DROP VIEW ' + PMA_commonParams.get('table')
|
||||
'DROP VIEW ' + escapeHtml(PMA_commonParams.get('table'))
|
||||
);
|
||||
|
||||
$(this).PMA_confirm(question, $(this).attr('href'), function (url) {
|
||||
|
||||
@ -913,7 +913,7 @@ AJAX.registerOnload('server_status_monitor.js', function () {
|
||||
label: $('#variableInput').val().replace(/_/g, " ")
|
||||
};
|
||||
newChart.series.push(newSeries);
|
||||
$('#seriesPreview').append('- ' + newSeries.label + str + '<br/>');
|
||||
$('#seriesPreview').append('- ' + escapeHtml(newSeries.label + str) + '<br/>');
|
||||
newChart.nodes.push(serie);
|
||||
$('#variableInput').val('');
|
||||
$('input[name="differentialValue"]').prop('checked', true);
|
||||
|
||||
@ -121,7 +121,7 @@ AJAX.registerOnload('sql.js', function () {
|
||||
// Delete row from SQL results
|
||||
$('a.delete_row.ajax').live('click', function (e) {
|
||||
e.preventDefault();
|
||||
var question = $.sprintf(PMA_messages.strDoYouReally, $(this).closest('td').find('div').text());
|
||||
var question = $.sprintf(PMA_messages.strDoYouReally, escapeHtml($(this).closest('td').find('div').text()));
|
||||
var $link = $(this);
|
||||
$link.PMA_confirm(question, $link.attr('href'), function (url) {
|
||||
$msgbox = PMA_ajaxShowMessage();
|
||||
|
||||
@ -47,7 +47,7 @@ function PMA_queryChart(data, columnNames, settings) {
|
||||
},
|
||||
axes : {
|
||||
xaxis : {
|
||||
label : settings.xaxisLabel
|
||||
label : escapeHtml(settings.xaxisLabel)
|
||||
},
|
||||
yaxis : {
|
||||
label : settings.yaxisLabel
|
||||
|
||||
Loading…
Reference in New Issue
Block a user