diff options
author | Jehan-Guillaume (ioguix) de Rorthais | 2010-09-29 15:52:09 +0000 |
---|---|---|
committer | Guillaume (ioguix) de Rorthais | 2010-09-29 15:52:09 +0000 |
commit | c5d4865fdc57d7fb747c78acbe0e54c3e69170a4 (patch) | |
tree | 6186add061d7ccabc15ff2f950329474de2b8c6d /xloadtree/xtree2.js | |
parent | 942f7e2dfb6981fe2dc5ddfa88deefdc55597744 (diff) |
Quick Fix on the xloadtree code about bad html specialchars escaping and xml encoding
Diffstat (limited to 'xloadtree/xtree2.js')
-rw-r--r-- | xloadtree/xtree2.js | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/xloadtree/xtree2.js b/xloadtree/xtree2.js index 6218d785..c7feecbc 100644 --- a/xloadtree/xtree2.js +++ b/xloadtree/xtree2.js @@ -257,7 +257,7 @@ var webFXTreeHandler = { }, textToHtml: function (s) { - return String(s).replace(/&|<|>|\n|\"\u00A0/g, this._textToHtml); + return String(s).replace(/&|<|>|\n|\"|\u00A0/g, this._textToHtml); }, _textToHtml: function (s) { |