Index: /FCKeditor/trunk/_whatsnew.html
===================================================================
--- /FCKeditor/trunk/_whatsnew.html	(revision 1404)
+++ /FCKeditor/trunk/_whatsnew.html	(revision 1405)
@@ -61,4 +61,6 @@
 			ENTER key will not any more break &lt;button&gt; elements at the beginning of 
 			paragraphs.</li>
+		<li>[<a target="_blank" href="http://dev.fckeditor.net/ticket/1654">#1654</a>] The editor
+			was not loading on an specific unknown situation. The breaking point has been removed.</li>
 	</ul>
 	<p>
Index: /FCKeditor/trunk/editor/_source/classes/fckeditingarea.js
===================================================================
--- /FCKeditor/trunk/editor/_source/classes/fckeditingarea.js	(revision 1404)
+++ /FCKeditor/trunk/editor/_source/classes/fckeditingarea.js	(revision 1405)
@@ -46,13 +46,6 @@
 
 	// Remove all child nodes from the target.
-	var oChild ;
-	while( ( oChild = eTargetElement.firstChild ) )		// Only one "=".
-	{
-		// Set innerHTML = '' to avoid memory leak.
-		if ( oChild.contentWindow )
-			oChild.contentWindow.document.body.innerHTML = '' ;
-
-		eTargetElement.removeChild( oChild ) ;
-	}
+	while( eTargetElement.firstChild )
+		eTargetElement.removeChild( eTargetElement.firstChild ) ;
 
 	if ( this.Mode == FCK_EDITMODE_WYSIWYG )
