From: Radek Czajka Date: Wed, 10 Aug 2011 15:00:29 +0000 (+0200) Subject: protect & and < enities on html2xml X-Git-Url: https://git.mdrn.pl/redakcja.git/commitdiff_plain/9053b4410f14a2ceb2b14f9af42dc46c742dc196?hp=9f5909ffb6a680a86c2da4a260df92df8e88c3b3 protect & and < enities on html2xml --- diff --git a/redakcja/static/js/wiki/xslt.js b/redakcja/static/js/wiki/xslt.js index cc2d19f2..9efeba3b 100644 --- a/redakcja/static/js/wiki/xslt.js +++ b/redakcja/static/js/wiki/xslt.js @@ -253,7 +253,7 @@ HTMLSerializer.prototype.serialize = function(rootElement, stripOuter) break; case TEXT_NODE: self.result += text_buffer; - text_buffer = token.node.nodeValue; + text_buffer = token.node.nodeValue.replace('&', '&').replace('<', '<'); break; }; };