diff --git a/ChangeLog b/ChangeLog index 57d9e27e60..b7a77bb34f 100644 --- a/ChangeLog +++ b/ChangeLog @@ -4,6 +4,9 @@ phpMyAdmin - ChangeLog 4.2.8.0 (not yet released) - bug #4516 Odd export behavior +4.2.7.1 (2014-08-17) +- bug #4505 [security] XSS in view operations page + 4.2.7.0 (2014-07-31) - bug Broken links on home page - bug #4494 Overlap in navigation panel diff --git a/js/functions.js b/js/functions.js index 09bfeda57f..a970a81584 100644 --- a/js/functions.js +++ b/js/functions.js @@ -3585,7 +3585,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) {