From ca0cd05973b468c056a682ab1fb9133856a56943 Mon Sep 17 00:00:00 2001 From: alecpl Date: Mon, 28 Nov 2011 08:10:44 +0000 Subject: - Fix handling HTML entities when converting HTML to text (#1488212) --- program/js/app.js | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) (limited to 'program/js') diff --git a/program/js/app.js b/program/js/app.js index 22ff4c98f..f17e2f432 100644 --- a/program/js/app.js +++ b/program/js/app.js @@ -5765,10 +5765,13 @@ function rcube_webmail() }); }; - this.plain2html = function(plainText, id) + this.plain2html = function(plain, id) { var lock = this.set_busy(true, 'converting'); - $('#'+id).val(plainText ? '
'+plainText+'
' : ''); + + plain = plain.replace(/&/g, '&').replace(//g, '>'); + $('#'+id).val(plain ? '
'+plain+'
' : ''); + this.set_busy(false, null, lock); }; -- cgit v1.2.3