Index: /CKEditor/branches/versions/3.1.x/CHANGES.html
===================================================================
--- /CKEditor/branches/versions/3.1.x/CHANGES.html	(revision 4889)
+++ /CKEditor/branches/versions/3.1.x/CHANGES.html	(revision 4890)
@@ -42,4 +42,6 @@
 		<li><a href="http://dev.fckeditor.net/ticket/4067">#4067</a> : Introduced the full page editing support (from &lt;html&gt; to &lt;/html&gt;).</li>
 		<li><a href="http://dev.fckeditor.net/ticket/4228">#4228</a> : Introduced the Shared Spaces feature.</li>
+		<li><a href="http://dev.fckeditor.net/ticket/4379">#4379</a> : Introduced the new powerful pasting system and word cleanup procedure, including enhancements to the paste as plain text feature.</li>
+		<li><a href="http://dev.fckeditor.net/ticket/2872">#2872</a> : Introduced the new native PHP API, the first standardized server side support.</li>
 		<li><a href="http://dev.fckeditor.net/ticket/4210">#4210</a> : Added CKEditor plugin for jQuery.</li>
 		<li><a href="http://dev.fckeditor.net/ticket/2885">#2885</a> : Added 'div' dialog and corresponding context menu options.</li>
Index: /CKEditor/branches/versions/3.1.x/_samples/sharedspaces.html
===================================================================
--- /CKEditor/branches/versions/3.1.x/_samples/sharedspaces.html	(revision 4889)
+++ /CKEditor/branches/versions/3.1.x/_samples/sharedspaces.html	(revision 4890)
@@ -102,32 +102,32 @@
 			} );
 
-			CKEDITOR.replace( 'editor2',
+		CKEDITOR.replace( 'editor2',
+			{
+				sharedSpaces :
 				{
-					sharedSpaces :
-					{
-						top : 'topSpace',
-						bottom : 'bottomSpace'
-					},
+					top : 'topSpace',
+					bottom : 'bottomSpace'
+				},
 
-					// Removes the maximize plugin as it's not usable
-					// in a shared toolbar.
-					// Removes the resizer as it's not usable in a
-					// shared elements path.
-					removePlugins : 'maximize,resize'
-				} );
+				// Removes the maximize plugin as it's not usable
+				// in a shared toolbar.
+				// Removes the resizer as it's not usable in a
+				// shared elements path.
+				removePlugins : 'maximize,resize'
+			} );
 
-			CKEDITOR.replace( 'editor3',
+		CKEDITOR.replace( 'editor3',
+			{
+				sharedSpaces :
 				{
-					sharedSpaces :
-					{
-						top : 'topSpace'
-					},
+					top : 'topSpace'
+				},
 
-					// Removes the maximize plugin as it's not usable
-					// in a shared toolbar.
-					removePlugins : 'maximize'
-				} );
+				// Removes the maximize plugin as it's not usable
+				// in a shared toolbar.
+				removePlugins : 'maximize'
+			} );
 
-			CKEDITOR.replace( 'editor4' );
+		CKEDITOR.replace( 'editor4' );
 	//]]>
 	</script>
