Index: /FCKeditor/trunk/_whatsnew.html
===================================================================
--- /FCKeditor/trunk/_whatsnew.html	(revision 161)
+++ /FCKeditor/trunk/_whatsnew.html	(revision 162)
@@ -35,5 +35,6 @@
 		New Features and Improvements:</p>
 	<ul>
-		<li>&lt;none&gt;</li></ul>
+		<li>[<a target="_blank" href="http://dev.fckeditor.net/ticket/118">Ticket-118</a>] 
+			The SelectAll command now is available in Source Mode.</li>
 	<p>
 		Fixed Bugs:</p>
@@ -62,8 +63,10 @@
 		<li>[<a target="_blank" href="https://sourceforge.net/tracker/?func=detail&aid=1573191&group_id=75348&atid=543653">SF
 			BUG-1573191</a>] The Html code inserted with FCK.InsertHtml didn't have the same protection for special tags.</li>
-		<li>[<a target="_blank" href="http://dev.fckeditor.net/ticket/118">Ticket-118</a>] 
-			The SelectAll command now is available in Source Mode.</li>
 		<li>[<a target="_blank" href="http://dev.fckeditor.net/ticket/110">Ticket-110</a>] 
 			The OK button in dialogs had its width set as an inline style.</li>
+		<li>[<a target="_blank" href="http://dev.fckeditor.net/ticket/113">Ticket-113</a>] 
+		[<a target="_blank" href="http://dev.fckeditor.net/ticket/94">Ticket-94</a>] 
+		[<a target="_blank" href="https://sourceforge.net/tracker/?func=detail&aid=1659270&group_id=75348&atid=543653">SF
+			BUG-1659270</a>] ForcePasteAsPlainText didn't work in Firefox.</li>
 	</ul>
 	<h3>
Index: /FCKeditor/trunk/editor/_source/internals/fck_gecko.js
===================================================================
--- /FCKeditor/trunk/editor/_source/internals/fck_gecko.js	(revision 161)
+++ /FCKeditor/trunk/editor/_source/internals/fck_gecko.js	(revision 162)
@@ -204,5 +204,7 @@
 	// TODO: Implement the "Paste as Plain Text" code.
 
-	FCKDialog.OpenDialog( 'FCKDialog_Paste', FCKLang.PasteAsText, 'dialog/fck_paste.html', 400, 330, 'PlainText' ) ;
+	// If the function is called inmediately Firefox 2 does automatically paste the contents as soon as the new dialog is created
+	// so we run it in a Timeout and the paste event can be cancelled
+	FCKTools.RunFunction( FCKDialog.OpenDialog, FCKDialog, ['FCKDialog_Paste', FCKLang.PasteAsText, 'dialog/fck_paste.html', 400, 330, 'PlainText'] ) ;
 
 /*
