Index: _whatsnew.html
===================================================================
--- _whatsnew.html	(revision 1861)
+++ _whatsnew.html	(working copy)
@@ -41,6 +41,9 @@
 	</ul>
 	<p>
 		Fixed Bugs:</p>
+		<li>[<a target="_blank" href="http://dev.fckeditor.net/ticket/768">#768</a>] It is no longer possible
+			for an image to have its width and height defined with both HTML attributes and inline CSS
+			styles in IE.</li>
 	<ul>
 		<li></li>
 	</ul>
Index: editor/_source/internals/fckxhtml.js
===================================================================
--- editor/_source/internals/fckxhtml.js	(revision 1861)
+++ editor/_source/internals/fckxhtml.js	(working copy)
@@ -400,6 +400,13 @@
 		if ( sSavedUrl != null )
 			FCKXHtml._AppendAttribute( node, 'src', sSavedUrl ) ;
 
+		// Bug #768 : If the width and height are defined inline CSS, 
+		// don't define it again in the HTML attributes.
+		if ( htmlNode.style.width )
+			node.removeAttribute( 'width' ) ;
+		if ( htmlNode.style.height )
+			node.removeAttribute( 'height' ) ;
+
 		return node ;
 	},
 
