Index: /CKEditor/branches/prototype/_source/plugins/dialog/plugin.js
===================================================================
--- /CKEditor/branches/prototype/_source/plugins/dialog/plugin.js	(revision 2716)
+++ /CKEditor/branches/prototype/_source/plugins/dialog/plugin.js	(revision 2717)
@@ -243,11 +243,14 @@
 	// IE6 BUG: Text fields and text areas are only half-rendered the first time the dialog appears in IE6 (#2661).
 	// This is still needed after [2708] and [2709] because text fields in hidden TR tags are still broken.
-	this.on( 'load', function( evt )
-			{
-				var outer = this.getElement(),
-					inner = outer.getFirst();
-				inner.remove();
-				inner.appendTo( outer );
-			}, this );
+	if ( CKEDITOR.env.ie && CKEDITOR.env.version < 7 )
+	{
+		this.on( 'load', function( evt )
+				{
+					var outer = this.getElement(),
+						inner = outer.getFirst();
+					inner.remove();
+					inner.appendTo( outer );
+				}, this );
+	}
 
 	CKEDITOR.dialog._.initDragAndDrop( this );
