Index: /FCKeditor/branches/developers/alfonsoml/_whatsnew.html
===================================================================
--- /FCKeditor/branches/developers/alfonsoml/_whatsnew.html	(revision 54)
+++ /FCKeditor/branches/developers/alfonsoml/_whatsnew.html	(revision 55)
@@ -154,4 +154,6 @@
 		<li>[<a target="_blank" href="https://sourceforge.net/tracker/?func=detail&aid=1559466&group_id=75348&atid=543653">SF BUG-1559466</a>] 
 			The ol/ul list property window always searched first for a UL element.</li>
+		<li>[<a target="_blank" href="https://sourceforge.net/tracker/?func=detail&aid=1516008&group_id=75348&atid=543653">SF BUG-1516008</a>] 
+			Class attribute in IE wasn't loaded in the image dialog.</li>
 	</ul>
 	<p>
Index: /FCKeditor/branches/developers/alfonsoml/editor/dialog/fck_flash/fck_flash.js
===================================================================
--- /FCKeditor/branches/developers/alfonsoml/editor/dialog/fck_flash/fck_flash.js	(revision 54)
+++ /FCKeditor/branches/developers/alfonsoml/editor/dialog/fck_flash/fck_flash.js	(revision 55)
Index: /FCKeditor/branches/developers/alfonsoml/editor/dialog/fck_image/fck_image.js
===================================================================
--- /FCKeditor/branches/developers/alfonsoml/editor/dialog/fck_image/fck_image.js	(revision 54)
+++ /FCKeditor/branches/developers/alfonsoml/editor/dialog/fck_image/fck_image.js	(revision 55)
@@ -149,11 +149,16 @@
 	GetE('txtAttLangCode').value	= oImage.lang ;
 	GetE('txtAttTitle').value		= oImage.title ;
-	GetE('txtAttClasses').value		= oImage.getAttribute('class',2) || '' ;
 	GetE('txtLongDesc').value		= oImage.longDesc ;
 
 	if ( oEditor.FCKBrowserInfo.IsIE )
-		GetE('txtAttStyle').value	= oImage.style.cssText ;
-	else
-		GetE('txtAttStyle').value	= oImage.getAttribute('style',2) ;
+	{
+		GetE('txtAttClasses').value = oEmbed.getAttribute('className') || '' ;
+		GetE('txtAttStyle').value = oEmbed.style.cssText ;
+	}
+	else
+	{
+		GetE('txtAttClasses').value = oEmbed.getAttribute('class',2) || '' ;
+		GetE('txtAttStyle').value = oEmbed.getAttribute('style',2) ;
+	}
 
 	if ( oLink )
