Index: /CKEditor/trunk/CHANGES.html
===================================================================
--- /CKEditor/trunk/CHANGES.html	(revision 6875)
+++ /CKEditor/trunk/CHANGES.html	(revision 6876)
@@ -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-2011, CKSource - Frederico Knabben. All rights reserved.
@@ -56,4 +56,5 @@
 		<li><a href="http://dev.ckeditor.com/ticket/7322">#7322</a> : Text font plugin now recognizes font family names which contain quotations.</li>
 		<li><a href="http://dev.ckeditor.com/ticket/7540">#7540</a> : Paste from Word introduces wrong spaces.</li>
+		<li><a href="http://dev.ckeditor.com/ticket/7697">#7697</a> : Successive calls of replace() where not working after SCAYT context menu initialization.</li>
 	</ul>
 	<h3>
Index: /CKEditor/trunk/_source/plugins/scayt/plugin.js
===================================================================
--- /CKEditor/trunk/_source/plugins/scayt/plugin.js	(revision 6875)
+++ /CKEditor/trunk/_source/plugins/scayt/plugin.js	(revision 6876)
@@ -664,13 +664,13 @@
 							return null;
 						// Remove unused commands and menuitems
-						for ( i in moreSuggestions )
-						{
-							delete editor._.menuItems[ i ];
-							delete editor._.commands[ i ];
+						for ( var m in moreSuggestions )
+						{
+							delete editor._.menuItems[ m ];
+							delete editor._.commands[ m ];
 						}
-						for ( i in mainSuggestions )
-						{
-							delete editor._.menuItems[ i ];
-							delete editor._.commands[ i ];
+						for ( m in mainSuggestions )
+						{
+							delete editor._.menuItems[ m ];
+							delete editor._.commands[ m ];
 						}
 						moreSuggestions = {};		// Reset items.
