Index: /CKEditor/trunk/CHANGES.html
===================================================================
--- /CKEditor/trunk/CHANGES.html	(revision 3790)
+++ /CKEditor/trunk/CHANGES.html	(revision 3791)
@@ -1,3 +1,3 @@
-﻿<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
+﻿﻿<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
 <!--
 Copyright (c) 2003-2009, CKSource - Frederico Knabben. All rights reserved.
@@ -81,4 +81,5 @@
 			block instead of selected lines in enterMode = BR.</li>
 		<li><a href="http://dev.fckeditor.net/ticket/3844">#3844</a> : Fixed UndoManager register keydown on obsoleted document</li>
+		<li><a href="http://dev.fckeditor.net/ticket/3805">#3805</a> : Enabled SCAYT plugin for IE.</li> 
 	</ul>
 	<h3>
Index: /CKEditor/trunk/_source/plugins/scayt/plugin.js
===================================================================
--- /CKEditor/trunk/_source/plugins/scayt/plugin.js	(revision 3790)
+++ /CKEditor/trunk/_source/plugins/scayt/plugin.js	(revision 3791)
@@ -312,35 +312,31 @@
 				});
 
-			// Disabling it on IE for now, as it's blocking the browser (#3802).
-			if ( !CKEDITOR.env.ie )
-			{
-				editor.ui.add( 'Scayt', CKEDITOR.UI_MENUBUTTON,
-					{
-						label : editor.lang.scayt.title,
-						title : editor.lang.scayt.title,
-						className : 'cke_button_scayt',
-						onRender: function()
-						{
-							command.on( 'state', function()
-								{
-									this.setState( command.state );
-								},
-								this);
-						},
-						onMenu : function()
-						{
-							var isEnabled = plugin.isScaytEnabled( editor );
-
-							editor.getMenuItem( 'scaytToggle' ).label = editor.lang.scayt[ isEnabled ? 'disable' : 'enable' ];
-
-							return {
-								scaytToggle : CKEDITOR.TRISTATE_OFF,
-								scaytOptions : isEnabled ? CKEDITOR.TRISTATE_OFF : CKEDITOR.TRISTATE_DISABLED,
-								scaytLangs : isEnabled ? CKEDITOR.TRISTATE_OFF : CKEDITOR.TRISTATE_DISABLED,
-								scaytAbout : isEnabled ? CKEDITOR.TRISTATE_OFF : CKEDITOR.TRISTATE_DISABLED
-							};
-						}
-					});
-			}
+			editor.ui.add( 'Scayt', CKEDITOR.UI_MENUBUTTON,
+				{
+					label : editor.lang.scayt.title,
+					title : editor.lang.scayt.title,
+					className : 'cke_button_scayt',
+					onRender: function()
+					{
+						command.on( 'state', function()
+							{
+								this.setState( command.state );
+							},
+							this);
+					},
+					onMenu : function()
+					{
+						var isEnabled = plugin.isScaytEnabled( editor );
+
+						editor.getMenuItem( 'scaytToggle' ).label = editor.lang.scayt[ isEnabled ? 'disable' : 'enable' ];
+
+						return {
+							scaytToggle : CKEDITOR.TRISTATE_OFF,
+							scaytOptions : isEnabled ? CKEDITOR.TRISTATE_OFF : CKEDITOR.TRISTATE_DISABLED,
+							scaytLangs : isEnabled ? CKEDITOR.TRISTATE_OFF : CKEDITOR.TRISTATE_DISABLED,
+							scaytAbout : isEnabled ? CKEDITOR.TRISTATE_OFF : CKEDITOR.TRISTATE_DISABLED
+						};
+					}
+				});
 
 			// If the "contextmenu" plugin is loaded, register the listeners.
