Index: /CKEditor/trunk/CHANGES.html
===================================================================
--- /CKEditor/trunk/CHANGES.html	(revision 5737)
+++ /CKEditor/trunk/CHANGES.html	(revision 5738)
@@ -86,5 +86,6 @@
 		<li><a href="http://dev.fckeditor.net/ticket/5799">#5799</a> : Correct plugin dependencies for the liststyle plugin with contextMenu and dialog.</li>
 		<li><a href="http://dev.fckeditor.net/ticket/5436">#5436</a> : IE: The cursor was moving to the wrong position when inserting inline elements at the end of cells on tables.</li>
-		<li><a href="http://dev.fckeditor.net/ticket/5436">#5436</a> : Firefox: CTRL+HOME was creating an unwanted empty paragraph at the start of the document.</li>
+		<li><a href="http://dev.fckeditor.net/ticket/5984">#5984</a> : Firefox: CTRL+HOME was creating an unwanted empty paragraph at the start of the document.</li>
+		<li><a href="http://dev.fckeditor.net/ticket/5634">#5634</a> : IE: It was needed to click twice in the editor to make it editable on some situations.</li>
 		<li>Updated the following language files:<ul>
 			<li><a href="http://dev.fckeditor.net/ticket/5962">#5962</a> : German;</li>
Index: /CKEditor/trunk/_source/plugins/wysiwygarea/plugin.js
===================================================================
--- /CKEditor/trunk/_source/plugins/wysiwygarea/plugin.js	(revision 5737)
+++ /CKEditor/trunk/_source/plugins/wysiwygarea/plugin.js	(revision 5738)
@@ -921,4 +921,8 @@
 						{
 							editor.focus();
+
+							// In IE7 the blinking cursor appears, but contents are not editable. (#5634)
+							if ( CKEDITOR.env.ie7Compat )
+								editor.getSelection().getRanges()[ 0 ].select();
 						} );
 				} );
