Skip to content
This repository has been archived by the owner on Feb 12, 2022. It is now read-only.

Commit

Permalink
Merge pull request #2049 from jbennie44/W-5234018
Browse files Browse the repository at this point in the history
W-5234018 - Fix XSS vulnerability in email admin screen
  • Loading branch information
bohawi authored Aug 1, 2018
2 parents 5f96ade + e5f2d75 commit 027725d
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 1 deletion.
3 changes: 3 additions & 0 deletions .bowerrc
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
{
"registry": "https://registry.bower.io"
}
2 changes: 1 addition & 1 deletion js/tree.js
Original file line number Diff line number Diff line change
Expand Up @@ -159,7 +159,7 @@
.removeClass('hide hidden')// jQuery deprecated hide in 3.0. Use hidden instead. Leaving hide here to support previous markup
.removeData('template')
.removeAttr('data-template');
$entity.find('.tree-' + nodeType + '-name > .tree-label').html(treeNode.text || treeNode.name);
$entity.find('.tree-' + nodeType + '-name > .tree-label')[self.options.html ? 'html' : 'text'](treeNode.text || treeNode.name);
$entity.data(treeNode);


Expand Down

0 comments on commit 027725d

Please sign in to comment.