Index: /FCKeditor/trunk/_whatsnew.html
===================================================================
--- /FCKeditor/trunk/_whatsnew.html	(revision 2062)
+++ /FCKeditor/trunk/_whatsnew.html	(revision 2063)
@@ -138,6 +138,4 @@
 		<li>[<a target="_blank" href="http://dev.fckeditor.net/ticket/2239">#2239</a>] The PHP
 			code in sampleposteddata.php has been changed from "&lt;?=" to "&lt;? echo".</li>
-		<li>[<a target="_blank" href="http://dev.fckeditor.net/ticket/2254">#2254</a>] Minor
-			fix in fckselection for nodeName attribute detection.</li>
 		<li>[<a target="_blank" href="http://dev.fckeditor.net/ticket/2241">#2241</a>] Fixed
 			404 error in floating panels when FCKeditor is installed to a different domain.</li>
Index: /FCKeditor/trunk/editor/_source/internals/fckselection_gecko.js
===================================================================
--- /FCKeditor/trunk/editor/_source/internals/fckselection_gecko.js	(revision 2062)
+++ /FCKeditor/trunk/editor/_source/internals/fckselection_gecko.js	(revision 2063)
@@ -163,5 +163,5 @@
 	while ( oContainer )
 	{
-		if ( oContainer.nodeType == 1 && oContainer.tagName.IEquals( nodeTagName ) ) return true ;
+		if ( oContainer.nodeType == 1 && oContainer.tagName == nodeTagName ) return true ;
 		oContainer = oContainer.parentNode ;
 	}
@@ -181,5 +181,5 @@
 	while ( oContainer )
 	{
-		if ( oContainer.nodeName.IEquals( nodeTagName ) )
+		if ( oContainer.nodeName == nodeTagName )
 			return oContainer ;
 
Index: /FCKeditor/trunk/editor/_source/internals/fckselection_ie.js
===================================================================
--- /FCKeditor/trunk/editor/_source/internals/fckselection_ie.js	(revision 2062)
+++ /FCKeditor/trunk/editor/_source/internals/fckselection_ie.js	(revision 2063)
@@ -148,5 +148,5 @@
 	while ( oContainer )
 	{
-		if ( oContainer.tagName.IEquals( nodeTagName ) ) return true ;
+		if ( oContainer.tagName == nodeTagName ) return true ;
 		oContainer = oContainer.parentNode ;
 	}
