Skip to content

Commit

Permalink
bug #4505 [security] XSS in view operations page
Browse files Browse the repository at this point in the history
Signed-off-by: Marc Delisle <marc@infomarc.info>
  • Loading branch information
madhuracj authored and lem9 committed Aug 17, 2014
1 parent 773c507 commit 0cd293f
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 1 deletion.
3 changes: 3 additions & 0 deletions ChangeLog
@@ -1,6 +1,9 @@
phpMyAdmin - ChangeLog
======================

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
Expand Down
2 changes: 1 addition & 1 deletion js/functions.js
Expand Up @@ -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) {
Expand Down

0 comments on commit 0cd293f

Please sign in to comment.