diff --git a/deluge/ui/web/js/Deluge.js b/deluge/ui/web/js/Deluge.js index 63ea8816b..653371f0f 100644 --- a/deluge/ui/web/js/Deluge.js +++ b/deluge/ui/web/js/Deluge.js @@ -50,7 +50,7 @@ Ext.state.Manager.setProvider(new Ext.state.CookieProvider()); Ext.apply(Ext, { escapeHTML: function(text) { - text = String(text); + text = String(text).replace('<', '<').replace('>', '>'); return text.replace('&', '&'); },