Index: /MediaWiki/trunk/plugins/mediawiki/fckplugin.js
===================================================================
--- /MediaWiki/trunk/plugins/mediawiki/fckplugin.js	(revision 1819)
+++ /MediaWiki/trunk/plugins/mediawiki/fckplugin.js	(revision 1820)
@@ -85,6 +85,7 @@
 		// rootNode is <body>.
 
-		// Normalize the document for text node processing.
-		rootNode.normalize() ;
+		// Normalize the document for text node processing (except IE - #1586).
+		if ( !FCKBrowserInfo.IsIE )
+			rootNode.normalize() ;
 
 		var stringBuilder = new Array() ;
@@ -514,5 +515,5 @@
 					if ( this._IsInsideCell )
 						textValue = textValue.replace( /\|/g, '&#124;' ) ;
-	
+
 				}
 				else 
