Index: _whatsnew.html
===================================================================
--- _whatsnew.html	(revision 1675)
+++ _whatsnew.html	(working copy)
@@ -51,6 +51,9 @@
 			colored text.</li>
 		<li>[<a target="_blank" href="http://dev.fckeditor.net/ticket/1952">#1952</a>] Fixed
 			an issue in FCKTools.FixCssUrls that, other than wrong, was breaking Opera.</li>
+		<li>[<a target="_blank" href="http://dev.fckeditor.net/ticket/1832">#1832</a>] Calling
+	       		FCK.InsertHtml() in non-IE browsers would now activate the document processor
+			as expected</li>
 	</ul>
 	<h3>
 		Version 2.6 Beta 1</h3>
Index: editor/_source/internals/fck_gecko.js
===================================================================
--- editor/_source/internals/fck_gecko.js	(revision 1675)
+++ editor/_source/internals/fck_gecko.js	(working copy)
@@ -361,6 +361,8 @@
 	this.EditorDocument.execCommand( 'inserthtml', false, html ) ;
 	this.Focus() ;
 
+	FCKDocumentProcessor.Process( FCK.EditorDocument ) ;
+
 	// For some strange reason the SaveUndoStep() call doesn't activate the undo button at the first InsertHtml() call.
 	this.Events.FireEvent( "OnSelectionChange" ) ;
 }
