Changeset 1820
- Timestamp:
- 2008-03-27 15:56:50 (4 months ago)
- Files:
-
- 1 modified
-
MediaWiki/trunk/plugins/mediawiki/fckplugin.js (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
MediaWiki/trunk/plugins/mediawiki/fckplugin.js
r1660 r1820 85 85 // rootNode is <body>. 86 86 87 // Normalize the document for text node processing. 88 rootNode.normalize() ; 87 // Normalize the document for text node processing (except IE - #1586). 88 if ( !FCKBrowserInfo.IsIE ) 89 rootNode.normalize() ; 89 90 90 91 var stringBuilder = new Array() ; … … 514 515 if ( this._IsInsideCell ) 515 516 textValue = textValue.replace( /\|/g, '|' ) ; 516 517 517 518 } 518 519 else