Index: /FCKeditor/trunk/_whatsnew.html
===================================================================
--- /FCKeditor/trunk/_whatsnew.html	(revision 2618)
+++ /FCKeditor/trunk/_whatsnew.html	(revision 2619)
@@ -109,4 +109,6 @@
 		<li>[<a target="_blank" href="http://dev.fckeditor.net/ticket/2616">#2616</a>] Fixed another situation
 			where new elements were inserted at the beginning of the content in IE.</li>
+		<li>[<a target="_blank" href="http://dev.fckeditor.net/ticket/2634">#2634</a>] Fixed two obsolete
+			references to Array::AddItem() instances still in the code.</li>
 	</ul>
 	<p>
Index: /FCKeditor/trunk/editor/_source/internals/fckcodeformatter.js
===================================================================
--- /FCKeditor/trunk/editor/_source/internals/fckcodeformatter.js	(revision 2618)
+++ /FCKeditor/trunk/editor/_source/internals/fckcodeformatter.js	(revision 2619)
@@ -48,5 +48,5 @@
 FCKCodeFormatter._ProtectData = function( outer, opener, data, closer )
 {
-	return opener + '___FCKpd___' + FCKCodeFormatter.ProtectedData.AddItem( data ) + closer ;
+	return opener + '___FCKpd___' + FCKCodeFormatter.ProtectedData.push( data ) + closer ;
 }
 
Index: /FCKeditor/trunk/editor/_source/internals/fckxhtml.js
===================================================================
--- /FCKeditor/trunk/editor/_source/internals/fckxhtml.js	(revision 2618)
+++ /FCKeditor/trunk/editor/_source/internals/fckxhtml.js	(revision 2619)
@@ -297,5 +297,5 @@
 FCKXHtml._AppendSpecialItem = function( item )
 {
-	return '___FCKsi___' + FCKXHtml.SpecialBlocks.AddItem( item ) ;
+	return '___FCKsi___' + FCKXHtml.SpecialBlocks.push( item ) ;
 }
 
