Error in rendering at multiple switching between wysiwyg and source in Opera
operator inserts a newline as \ n \ r, so there was a lot of rubbish and empty lines
my patch:
===================================================================
+++ fckeditor/editor/_source/classes/fckdataprocessor.js
@@ -44,10 +44,6 @@
*/
ConvertToHtml : function( data )
{
+ data = data.replace(/\r/g, '');
+
// The default data processor must handle two different cases depending
// on the FullPage setting. Custom Data Processors will not be
// compatible with FullPage, much probably.
operator inserts a newline as \ n \ r, so there was a lot of rubbish and empty lines
my patch:
===================================================================
+++ fckeditor/editor/_source/classes/fckdataprocessor.js
@@ -44,10 +44,6 @@
*/
ConvertToHtml : function( data )
{
+ data = data.replace(/\r/g, '');
+
// The default data processor must handle two different cases depending
// on the FullPage setting. Custom Data Processors will not be
// compatible with FullPage, much probably.