Index: /FCKeditor/branches/versions/2.6.x/_whatsnew.html
===================================================================
--- /FCKeditor/branches/versions/2.6.x/_whatsnew.html	(revision 7698)
+++ /FCKeditor/branches/versions/2.6.x/_whatsnew.html	(revision 7699)
@@ -34,14 +34,12 @@
 		FCKeditor ChangeLog - What's New?</h1>
 	<h3>
-		Version 2.6.9</h3>
+		Version 2.6.10</h3>
 	<p>
 		Fixed Bugs:</p>
 	<ul>
-		<li><strong>Security release, upgrade is highly recommended </strong>.<ul>
-			<li>(ASP) File Upload Protection Bypass - reported by Soroush Dalili (@irsdl), Mostafa Azizi</li>
-			<li>XSS vulnerability in built-in file manager - reported by Soroush Dalili (<a href="http://SecProject.com">SecProject.com</a>)</li>
+		<li>Minor security release:<ul>
+			<li>Values displayed in the "About" dialog window were not properly escaped - reported by David Sopas.</li>
 			</ul>
 		</li>
-		<li><a href="http://dev.ckeditor.com/ticket/9716">#9716</a> Fix FCKeditor browser detection to work with Firefox 17 and IE 10</li>
 	</ul>
 	<p>
Index: /FCKeditor/branches/versions/2.6.x/_whatsnew_history.html
===================================================================
--- /FCKeditor/branches/versions/2.6.x/_whatsnew_history.html	(revision 7698)
+++ /FCKeditor/branches/versions/2.6.x/_whatsnew_history.html	(revision 7699)
@@ -33,4 +33,16 @@
 	<h1>
 		FCKeditor ChangeLog - What's New?</h1>
+	<h3>
+		Version 2.6.9</h3>
+	<p>
+		Fixed Bugs:</p>
+	<ul>
+		<li><strong>Security release, upgrade is highly recommended </strong>.<ul>
+			<li>(ASP) File Upload Protection Bypass - reported by Soroush Dalili (@irsdl), Mostafa Azizi</li>
+			<li>XSS vulnerability in built-in file manager - reported by Soroush Dalili (<a href="http://SecProject.com">SecProject.com</a>)</li>
+			</ul>
+		</li>
+		<li><a href="http://dev.ckeditor.com/ticket/9716">#9716</a> Fix FCKeditor browser detection to work with Firefox 17 and IE 10</li>
+	</ul>
 	<h3>
 		Version 2.6.8</h3>
Index: /FCKeditor/branches/versions/2.6.x/editor/dialog/fck_about.html
===================================================================
--- /FCKeditor/branches/versions/2.6.x/editor/dialog/fck_about.html	(revision 7698)
+++ /FCKeditor/branches/versions/2.6.x/editor/dialog/fck_about.html	(revision 7699)
@@ -32,4 +32,5 @@
 var oEditor = window.parent.InnerDialogLoaded() ;
 var FCKLang	= oEditor.FCKLang ;
+var FCKTools = oEditor.FCKTools ;
 
 window.parent.AddTab( 'About', FCKLang.DlgAboutAboutTab ) ;
@@ -140,7 +141,7 @@
 					<script type="text/javascript">
 <!--
-document.write( '<b>User Agent<\/b><br />' + window.navigator.userAgent + '<br /><br />' ) ;
-document.write( '<b>Browser<\/b><br />' + window.navigator.appName + ' ' + window.navigator.appVersion + '<br /><br />' ) ;
-document.write( '<b>Platform<\/b><br />' + window.navigator.platform + '<br /><br />' ) ;
+document.write( '<b>User Agent<\/b><br />' + FCKTools.HTMLEncode( window.navigator.userAgent ) + '<br /><br />' ) ;
+document.write( '<b>Browser<\/b><br />' + FCKTools.HTMLEncode( window.navigator.appName ) + ' ' + FCKTools.HTMLEncode( window.navigator.appVersion ) + '<br /><br />' ) ;
+document.write( '<b>Platform<\/b><br />' + FCKTools.HTMLEncode( window.navigator.platform ) + '<br /><br />' ) ;
 
 var sUserLang = '?' ;
@@ -151,5 +152,5 @@
 	sUserLang = window.navigator.userLanguage ;
 
-document.write( '<b>Language<\/b><br />' + sUserLang ) ;
+document.write( '<b>Language<\/b><br />' + FCKTools.HTMLEncode( sUserLang ) ) ;
 //-->
 					</script>
