﻿id	summary	reporter	owner	description	type	status	priority	milestone	component	version	resolution	keywords	cc
2856	Inches and Centimetres	Ajos1	Artur Formella	"We still have people that work in Inches and NOT Centimetres. (Do not tell me off... I am trying to change them).

In ""fckeditor/editor/dialog/fck_paste.html"" (CleanWord) you have:

----------
// Remove margin styles.
html = html.replace( /\s*MARGIN: 0cm 0cm 0pt\s*;/gi, '' ) ;
html = html.replace( /\s*MARGIN: 0cm 0cm 0pt\s*""/gi, ""\"""" ) ;

html = html.replace( /\s*TEXT-INDENT: 0cm\s*;/gi, '' ) ;
html = html.replace( /\s*TEXT-INDENT: 0cm\s*""/gi, ""\"""" ) ;
----------

You might want to change to:

----------
// Remove margin styles.
html = html.replace( /\s*MARGIN: 0cm 0cm 0pt\s*;/gi, '' ) ;
html = html.replace( /\s*MARGIN: 0cm 0cm 0pt\s*""/gi, ""\"""" ) ;

html = html.replace( /\s*MARGIN: 0in 0in 0pt\s*;/gi, '' ) ;
html = html.replace( /\s*MARGIN: 0in 0in 0pt\s*""/gi, ""\"""" ) ;

html = html.replace( /\s*TEXT-INDENT: 0cm\s*;/gi, '' ) ;
html = html.replace( /\s*TEXT-INDENT: 0cm\s*""/gi, ""\"""" ) ;

html = html.replace( /\s*TEXT-INDENT: 0in\s*;/gi, '' ) ;
html = html.replace( /\s*TEXT-INDENT: 0in\s*""/gi, ""\"""" ) ;
----------
"	Bug	closed	Normal	FCKeditor 2.6.5	General	FCKeditor 2.4	fixed	Confirmed Review+	
