Index: _source/core/editor.js
===================================================================
--- _source/core/editor.js	(revision 4373)
+++ _source/core/editor.js	Mon Oct 19 02:42:10 CST 2009
@@ -123,6 +123,9 @@
 		// Fire the "configLoaded" event.
 		editor.fireOnce( 'configLoaded' );
 
+		// Load skin and theme once skin config is known.(#4547)
+		loadSkin( editor );
+
 		// Load language file.
 		loadLang( editor );
 	};
@@ -246,17 +249,17 @@
 
 						// Load the editor skin.
 						editor.fire( 'pluginsLoaded' );
-						loadSkin( editor );
+
+						// Load theme once plugins are loaded.
+						loadTheme( editor );
+
 					});
 			});
 	};
 
 	var loadSkin = function( editor )
 	{
-		CKEDITOR.skins.load( editor, 'editor', function()
-			{
-				loadTheme( editor );
-			});
+		CKEDITOR.skins.load( editor, 'editor' );
 	};
 
 	var loadTheme = function( editor )

