Index: /CKEditor/trunk/CHANGES.html
===================================================================
--- /CKEditor/trunk/CHANGES.html	(revision 5788)
+++ /CKEditor/trunk/CHANGES.html	(revision 5789)
@@ -104,4 +104,5 @@
 		<li><a href="http://dev.fckeditor.net/ticket/6068">#6068</a> : [IE7] A few labels were hidden in a RTL language.</li>
 		<li><a href="http://dev.fckeditor.net/ticket/6000">#6000</a> : Safari and Chrome where scrolling the contents to the top when moving the focus to the editor.</li>
+		<li><a href="http://dev.fckeditor.net/ticket/6090">#6090</a> : IE: Textarea with selection inside causes Link dialog issues.</li>
 		<li>Updated the following language files:<ul>
 			<li>Chinese Simplified;</li>
Index: /CKEditor/trunk/_source/plugins/selection/plugin.js
===================================================================
--- /CKEditor/trunk/_source/plugins/selection/plugin.js	(revision 5788)
+++ /CKEditor/trunk/_source/plugins/selection/plugin.js	(revision 5789)
@@ -275,7 +275,9 @@
 								// Avoid saving selection from within text input. (#5747)
 								var parentTag;
-								if ( nativeSel && nativeSel.type == 'Text'
-									&& ( parentTag = nativeSel.createRange().parentElement().nodeName.toLowerCase() )
-									&& parentTag in { input: 1, textarea : 1 } )
+								if ( nativeSel && nativeSel.type != 'Control'
+									&& ( parentTag = nativeSel.createRange() )
+									&& ( parentTag = parentTag.parentElement() )
+									&& ( parentTag = parentTag.nodeName )
+									&& parentTag.toLowerCase() in { input: 1, textarea : 1 } )
 								{
 									return;
