Index: FCKeditor/trunk/_whatsnew.html
===================================================================
--- FCKeditor/trunk/_whatsnew.html	(revision 2280)
+++ FCKeditor/trunk/_whatsnew.html	(revision 2281)
@@ -51,4 +51,7 @@
 		<li>[<a target="_blank" href="http://dev.fckeditor.net/ticket/2247">#2247</a>] The SHIFT+SPACE
 			keystroke will now produce a &amp;nbsp; character.</li>
+		<li>[<a target="_blank" href="http://dev.fckeditor.net/ticket/234">#234</a>] Introduced
+			the "PreventSubmitHandler" setting, which makes it possible to instruct the editor
+			to not handle the hidden field update on form submit events.</li>
 	</ul>
 	<p>
Index: FCKeditor/trunk/editor/fckeditor.html
===================================================================
--- FCKeditor/trunk/editor/fckeditor.html	(revision 2280)
+++ FCKeditor/trunk/editor/fckeditor.html	(revision 2281)
@@ -361,5 +361,6 @@
 			FCKTools.RunFunction( window.onresize ) ;
 
-		_AttachFormSubmitToAPI() ;
+		if ( !FCKConfig.PreventSubmitHandler )
+			_AttachFormSubmitToAPI() ;
 
 		FCK.SetStatus( FCK_STATUS_COMPLETE ) ;
Index: FCKeditor/trunk/fckconfig.js
===================================================================
--- FCKeditor/trunk/fckconfig.js	(revision 2280)
+++ FCKeditor/trunk/fckconfig.js	(revision 2281)
@@ -322,2 +322,4 @@
 
 FCKConfig.MsWebBrowserControlCompat = false ;
+
+FCKConfig.PreventSubmitHandler = false ;
