Index: /FCKeditor/branches/developers/alfonsoml/_whatsnew.html
===================================================================
--- /FCKeditor/branches/developers/alfonsoml/_whatsnew.html	(revision 141)
+++ /FCKeditor/branches/developers/alfonsoml/_whatsnew.html	(revision 142)
@@ -46,4 +46,11 @@
 		<li>The Word cleanup has been changed to remove "display:none" tags that may come from
 			Word.</li>
+		<li>[<a target="_blank" href="https://sourceforge.net/tracker/?func=detail&atid=543653&aid=1659613&group_id=75348">SF
+			BUG-1659613</a>] The 2.4 version introduced a bug in the flash handling code that generated out of memory errors 
+			in IE7.</li>
+		<li>[<a target="_blank" href="https://sourceforge.net/tracker/?func=detail&atid=543653&aid=1660456&group_id=75348">SF
+			BUG-1660456</a>] The icons in context menus were draggable.</li>
+		<li>[<a target="_blank" href="https://sourceforge.net/tracker/?func=detail&atid=543653&aid=1653009&group_id=75348">SF
+			BUG-1653009</a>] If the server is configured to process html files as asp then it generated ASP error 0138.</li>
 	</ul>
 	<h3>
Index: /FCKeditor/branches/developers/alfonsoml/editor/_source/classes/fckcontextmenu.js
===================================================================
--- /FCKeditor/branches/developers/alfonsoml/editor/_source/classes/fckcontextmenu.js	(revision 141)
+++ /FCKeditor/branches/developers/alfonsoml/editor/_source/classes/fckcontextmenu.js	(revision 142)
@@ -27,4 +27,9 @@
 	oPanel.AppendStyleSheet( FCKConfig.SkinPath + 'fck_editor.css' ) ;
 	oPanel.IsContextMenu = true ;
+
+	// The FCKTools.DisableSelection doesn't seems to work to avoid dragging of the icons in Mozilla
+	// so we stop the start of the dragging
+	if ( FCKBrowserInfo.IsGecko )
+		oPanel.Document.addEventListener( 'draggesture', function(e) {e.preventDefault(); return false;}, true ) ;
 
 	var oMenuBlock = this._MenuBlock = new FCKMenuBlock() ;
@@ -110,4 +115,8 @@
 		fckContextMenu._Redraw = false ;
 	}
+	
+	// This will avoid that the content of the context menu can be dragged in IE
+	// as the content of the panel is recreated we need to do it every time
+	FCKTools.DisableSelection( fckContextMenu._Panel.Document.body ) ;
 
 	fckContextMenu._Panel.Show(
Index: /FCKeditor/branches/developers/alfonsoml/editor/_source/internals/fckdocumentprocessor.js
===================================================================
--- /FCKeditor/branches/developers/alfonsoml/editor/_source/internals/fckdocumentprocessor.js	(revision 141)
+++ /FCKeditor/branches/developers/alfonsoml/editor/_source/internals/fckdocumentprocessor.js	(revision 142)
@@ -143,5 +143,5 @@
 			{
 				var aAttributes = [ 'scale', 'play', 'loop', 'menu', 'wmode', 'quality' ] ;
-				for ( var iAtt = 0 ; i < aAttributes.length ; i++ )
+				for ( var iAtt = 0 ; iAtt < aAttributes.length ; iAtt++ )
 				{
 					var oAtt = oEmbed.getAttribute( aAttributes[iAtt] ) ;
Index: /FCKeditor/branches/developers/alfonsoml/editor/_source/internals/fckregexlib.js
===================================================================
--- /FCKeditor/branches/developers/alfonsoml/editor/_source/internals/fckregexlib.js	(revision 141)
+++ /FCKeditor/branches/developers/alfonsoml/editor/_source/internals/fckregexlib.js	(revision 142)
@@ -104,5 +104,5 @@
 
 	// Inline elements which MUST have child nodes.
-	InlineChildReqElements : { abbr:1,acronym:1,b:1,bdo:1,big:1,cite:1,code:1,del:1,dfn:1,em:1,i:1,ins:1,label:1,kbd:1,q:1,samp:1,small:1,span:1,strong:1,sub:1,sup:1,tt:1,'var':1 },
+	InlineChildReqElements : { abbr:1,acronym:1,b:1,bdo:1,big:1,cite:1,code:1,del:1,dfn:1,em:1,font:1,i:1,ins:1,label:1,kbd:1,q:1,samp:1,small:1,span:1,strong:1,sub:1,sup:1,tt:1,'var':1 },
 
 	// Elements marked as empty "Empty" in the XHTML DTD.
Index: /FCKeditor/branches/developers/alfonsoml/editor/fckeditor.html
===================================================================
--- /FCKeditor/branches/developers/alfonsoml/editor/fckeditor.html	(revision 141)
+++ /FCKeditor/branches/developers/alfonsoml/editor/fckeditor.html	(revision 142)
@@ -39,5 +39,5 @@
 function LoadScript( url )
 {
-	document.write( '<script type="text/javascript" src="' + url + '" onerror="alert(\'Error loading \' + this.src);"><\/script>' ) ;
+	document.write( '<scr' + 'ipt type="text/javascript" src="' + url + '" onerror="alert(\'Error loading \' + this.src);"><\/scr' + 'ipt>' ) ;
 }
 
