Index: /CKEditor/branches/versions/3.1.x/CHANGES.html
===================================================================
--- /CKEditor/branches/versions/3.1.x/CHANGES.html	(revision 4584)
+++ /CKEditor/branches/versions/3.1.x/CHANGES.html	(revision 4585)
@@ -34,5 +34,6 @@
 	<h1>
 		CKEditor Changelog
-	</h1>
+	</h1>l45
+
 	<h3>
 		CKEditor 3.1 (SVN)</h3>
@@ -44,4 +45,5 @@
 		<li><a href="http://dev.fckeditor.net/ticket/2885">#2885</a> : Added 'div' dialog and corresponding context menu options.</li>
 		<li><a href="http://dev.fckeditor.net/ticket/4341">#4341</a> : Added the 'showborder' plugin.</li>
+		<li><a href="http://dev.fckeditor.net/ticket/4549">#4549</a> : Make the anti-cache query string configurable.</li>
 	</ul>
 	<p>
Index: /CKEditor/branches/versions/3.1.x/_source/core/config.js
===================================================================
--- /CKEditor/branches/versions/3.1.x/_source/core/config.js	(revision 4584)
+++ /CKEditor/branches/versions/3.1.x/_source/core/config.js	(revision 4585)
@@ -41,5 +41,5 @@
 	 * CKEDITOR.replace( 'myfiled', { customConfig : '' } );
 	 */
-	customConfig : CKEDITOR.getUrl( 'config.js' ),
+	customConfig : 'config.js',
 
 	/**
Index: /CKEditor/branches/versions/3.1.x/_source/core/editor.js
===================================================================
--- /CKEditor/branches/versions/3.1.x/_source/core/editor.js	(revision 4584)
+++ /CKEditor/branches/versions/3.1.x/_source/core/editor.js	(revision 4585)
@@ -28,5 +28,5 @@
 	var loadConfig = function( editor )
 	{
-		var customConfig = editor.config.customConfig;
+		var customConfig = CKEDITOR.getUrl( editor.config.customConfig );
 
 		// Check if there is a custom config to load.
@@ -45,5 +45,5 @@
 			// If there is no other customConfig in the chain, fire the
 			// "configLoaded" event.
-			if ( editor.config.customConfig == customConfig || !loadConfig( editor ) )
+			if ( CKEDITOR.getUrl( editor.config.customConfig ) == customConfig || !loadConfig( editor ) )
 				editor.fireOnce( 'customConfigLoaded' );
 		}
