commit 741fceb5ae517f60f9ec3b89c97a97c8c76e09e2
Author: Damien Pobel <dp@ez.no>
Date:   Wed Aug 17 11:37:11 2011 +0200

    Fixed #18482 Pasted text in Firefox has random spaces stripped

diff --git a/design/standard/javascript/themes/ez/editor_template.js b/design/standard/javascript/themes/ez/editor_template.js
index d3558bb..7fbba6c 100644
--- a/design/standard/javascript/themes/ez/editor_template.js
+++ b/design/standard/javascript/themes/ez/editor_template.js
@@ -287,9 +287,9 @@
 
             // eZ: the pasted text from Office with Firefox and Chrome on Windows may
             // contain some line feeds that are badly interpreted
-            // see http://issues.ez.no/18239
+            // see http://issues.ez.no/18239 and http://issues.ez.no/18482
             ed.onPostProcess.add(function(pl, o) {
-                o.content = o.content.replace(/(\n|\r)/g, "");
+                o.content = o.content.replace(/([^ >])(\r\n|\n|\r)/g, "$1 ").replace(/(\n|\r)/g, "");
             });
         },
 
