Index: /CKEditor/trunk/CHANGES.html
===================================================================
--- /CKEditor/trunk/CHANGES.html	(revision 6300)
+++ /CKEditor/trunk/CHANGES.html	(revision 6301)
@@ -77,4 +77,5 @@
 		<li><a href="http://dev.ckeditor.com/ticket/5522">#5522</a> : [IE] In versions &lt; 8 or compatibility mode, type="text" was missing in text fields.</li>
 		<li><a href="http://dev.ckeditor.com/ticket/6126">#6126</a> : [IE] Avoid problems if there are two buttons named "submit".</li>
+		<li><a href="http://dev.ckeditor.com/ticket/6791">#6791</a> : [IE7] Editor didn't show up when the replaced textarea's name was matching to the name of a meta tag in the page.</li>
 	</ul>
 	<h3>
Index: /CKEditor/trunk/_source/core/editor_basic.js
===================================================================
--- /CKEditor/trunk/_source/core/editor_basic.js	(revision 6300)
+++ /CKEditor/trunk/_source/core/editor_basic.js	(revision 6301)
@@ -99,4 +99,8 @@
 			element = document.getElementById( elementOrIdOrName );
 
+			// Elements that should go into head are unacceptable (#6791).
+			if ( element && element.tagName.toLowerCase() in {style:1,script:1,base:1,link:1,meta:1,title:1} )
+				element = null;
+
 			// If not found, look for elements by name. In this case we accept only
 			// textareas.
