Index: /FCKeditor/trunk/editor/_source/internals/fckxhtml.js
===================================================================
--- /FCKeditor/trunk/editor/_source/internals/fckxhtml.js	(revision 523)
+++ /FCKeditor/trunk/editor/_source/internals/fckxhtml.js	(revision 524)
@@ -398,8 +398,6 @@
 			var item = htmlNode.childNodes[i] ;
 			var val = item.nodeValue ;
-			if ( i == 0 )
-				val = "\r\n" + val ;
-			if ( item.nodeType == 3 )
-				node.appendChild( FCKXHtml.XML.createTextNode( FCKXHtml._AppendSpecialItem( val ) ) ) ;
+			if ( item.nodeType == 3 && i == 0 )
+				node.appendChild( FCKXHtml.XML.createTextNode( FCKXHtml._AppendSpecialItem( "\r\n" + val ) ) ) ;
 			else
 				FCKXHtml._AppendNode( node, item ) ;
