From 8e039617ed33a8292fd68da1d7cc4133551b9f8c Mon Sep 17 00:00:00 2001 From: Alexander Ebert Date: Sat, 13 Jul 2013 21:58:58 +0200 Subject: [PATCH] Fixed quoting of tables --- wcfsetup/install/files/js/WCF.Message.js | 3 +++ 1 file changed, 3 insertions(+) diff --git a/wcfsetup/install/files/js/WCF.Message.js b/wcfsetup/install/files/js/WCF.Message.js index 43d52b5b50..5fa963f013 100644 --- a/wcfsetup/install/files/js/WCF.Message.js +++ b/wcfsetup/install/files/js/WCF.Message.js @@ -1737,6 +1737,9 @@ WCF.Message.Quote.Handler = Class.extend({ if ($tagName === 'li') { nodeText += "\r\n"; } + else if ($tagName === 'td' && !$.browser.msie) { + nodeText += "\r\n"; + } nodeText += this._getNodeText(node.childNodes[i]); -- 2.20.1