Index: _whatsnew.html
===================================================================
--- _whatsnew.html	(revision 1728)
+++ _whatsnew.html	(working copy)
@@ -92,6 +92,8 @@
 			opened.</li>
 		<li>[<a target="_blank" href="http://dev.fckeditor.net/ticket/2024">#2024</a>] Fixed
 			JavaScript error in IE when the user tries to open dialogs in Source mode.</li>
+		<li>[<a target="_blank" href="http://dev.fckeditor.net/ticket/2028">#2028</a>] Fixed
+			JavaScript error when EnterMode=br and user tries to insert a page break.</li>
 	</ul>
 	<h3>
 		Version 2.6 Beta 1</h3>
Index: editor/_source/commandclasses/fck_othercommands.js
===================================================================
--- editor/_source/commandclasses/fck_othercommands.js	(revision 1728)
+++ editor/_source/commandclasses/fck_othercommands.js	(working copy)
@@ -257,10 +257,7 @@
 	var oRange = new FCKDomRange( FCK.EditorWindow ) ;
 	oRange.MoveToSelection() ;
 	var oSplitInfo = oRange.SplitBlock() ;
-	if ( oSplitInfo.NextBlock )
-		oSplitInfo.NextBlock.parentNode.insertBefore( oFakeImage, oSplitInfo.NextBlock ) ;
-	else
-		oSplitInfo.PreviousBlock.parentNode.insertBefore( oFakeImage, oSplitInfo.PreviousBlock.nextSibling ) ;
+	oRange.InsertNode( oFakeImage ) ;
 
 	FCK.Events.FireEvent( 'OnSelectionChange' ) ;
 }
