summaryrefslogtreecommitdiff
path: root/xloadtree/xtree2.js
diff options
context:
space:
mode:
authorJehan-Guillaume (ioguix) de Rorthais2010-09-29 15:52:09 +0000
committerGuillaume (ioguix) de Rorthais2010-09-29 15:52:09 +0000
commitc5d4865fdc57d7fb747c78acbe0e54c3e69170a4 (patch)
tree6186add061d7ccabc15ff2f950329474de2b8c6d /xloadtree/xtree2.js
parent942f7e2dfb6981fe2dc5ddfa88deefdc55597744 (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.js2
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) {