﻿id	summary	reporter	owner	description	type	status	priority	milestone	component	version	resolution	keywords	cc
7353	error in IE9: ';' expected	Pieter Fibbe		"When i run the fck editor 2.6.4 in IE9 i get a javascript error: 

';' expected

It seems that in the generated minified file a d/while loop is the problem.
I did a local fix in the minified version, here's a patch for the source:


Index: web/pub/fckeditor-2.6.4/editor/_source/internals/fckxhtml.js
===================================================================
--- web/pub/fckeditor-2.6.4/editor/_source/internals/fckxhtml.js	(revision 126316)
+++ web/pub/fckeditor-2.6.4/editor/_source/internals/fckxhtml.js	(working copy)
@@ -446,7 +446,7 @@
 
 			} while ( htmlNode && htmlNode.nodeType == 3 && htmlNode.nodeValue.Trim().length == 0 )
 
-		}	while ( htmlNode && htmlNode.nodeName.toLowerCase() == 'li' )
+		}	while ( htmlNode && htmlNode.nodeName.toLowerCase() == 'li' );
 
 		return newTarget ;
 	},
"	Bug	closed	Normal		General	FCKeditor 2.6.4	wontfix		
