Changeset 1820

Show
Ignore:
Timestamp:
2008-03-27 15:56:50 (4 months ago)
Author:
wwalc
Message:

Fix for #1586

Files:
1 modified

Legend:

Unmodified
Added
Removed
  • MediaWiki/trunk/plugins/mediawiki/fckplugin.js

    r1660 r1820  
    8585                // rootNode is <body>. 
    8686 
    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() ; 
    8990 
    9091                var stringBuilder = new Array() ; 
     
    514515                                        if ( this._IsInsideCell ) 
    515516                                                textValue = textValue.replace( /\|/g, '&#124;' ) ; 
    516          
     517 
    517518                                } 
    518519                                else