Changeset 1922
- Timestamp:
- 04/14/08 05:48:43 (5 years ago)
- Location:
- FCKeditor/trunk
- Files:
-
- 2 edited
-
_whatsnew.html (modified) (1 diff)
-
editor/_source/classes/fckeditingarea.js (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
FCKeditor/trunk/_whatsnew.html
r1921 r1922 48 48 <li>[<a target="_blank" href="http://dev.fckeditor.net/ticket/1426">#1426</a>] Fixed the error loading 49 49 fckstyles.xml in servers which cannot return the correct content type header for .xml files.</li> 50 <li>[<a target="_blank" href="http://dev.fckeditor.net/ticket/2102">#2102</a>] Fixed FCKConfig.DocType 51 which stopped working in FCKeditor 2.6.</li> 50 52 </ul> 51 53 <h3> -
FCKeditor/trunk/editor/_source/classes/fckeditingarea.js
r1793 r1922 102 102 if ( FCK_IS_CUSTOM_DOMAIN && FCKBrowserInfo.IsIE ) 103 103 { 104 window._FCKHtmlToLoad = sOverrideError + html;104 window._FCKHtmlToLoad = html.replace( /<head>/i, '<head>' + sOverrideError ) ; 105 105 oIFrame.src = 'javascript:void( (function(){' + 106 106 'document.open() ;' + … … 134 134 135 135 oDoc.open() ; 136 oDoc.write( sOverrideError + html) ;136 oDoc.write( html.replace( /<head>/i, '<head>' + sOverrideError ) ) ; 137 137 oDoc.close() ; 138 138 }
Note: See TracChangeset
for help on using the changeset viewer.
