Skip to content
Permalink
Browse files Browse the repository at this point in the history
[security] Fixed XSS in Inline Edit on save action
  • Loading branch information
helmo authored and lem9 committed Sep 2, 2011
1 parent 4039683 commit 2f28ce9
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
1 change: 1 addition & 0 deletions ChangeLog
Expand Up @@ -31,6 +31,7 @@ phpMyAdmin - ChangeLog
- bug #3374347 [display] Backquotes in normal text on import page
- bug #3358750 [core] With Suhosin, urls are too long in edit links
- [security] Missing sanitization on the table, column and index names leads to XSS vulnerabilities, see PMASA-2011-13
- [security] Fixed XSS in Inline Edit on save action

3.4.3.2 (2011-07-23)
- [security] Fixed XSS vulnerability, see PMASA-2011-9
Expand Down
2 changes: 1 addition & 1 deletion js/sql.js
Expand Up @@ -1111,7 +1111,7 @@ function PMA_unInlineEditRow($del_hide, $chg_submit, $this_td, $input_siblings,
}
}
}
$this_sibling.html(new_html);
$this_sibling.text(new_html);
}
})
}
Expand Down

0 comments on commit 2f28ce9

Please sign in to comment.