Replace JQuery .text by .html
- Prevents inserting unescaped HTML in page
This commit is contained in:
@@ -23,7 +23,7 @@ $(document).ready(function() {
|
||||
$('#contact_allow, #contact_deny, #group_allow, #group_deny').change(function() {
|
||||
var selstr;
|
||||
$('#contact_allow option:selected, #contact_deny option:selected, #group_allow option:selected, #group_deny option:selected').each( function() {
|
||||
selstr = $(this).text();
|
||||
selstr = $(this).html();
|
||||
$('#jot-public').hide();
|
||||
});
|
||||
if (selstr == null) {
|
||||
|
||||
Reference in New Issue
Block a user