Index: /CKEditor/branches/features/paste/_source/plugins/pastefromword/plugin.js
===================================================================
--- /CKEditor/branches/features/paste/_source/plugins/pastefromword/plugin.js	(revision 4716)
+++ /CKEditor/branches/features/paste/_source/plugins/pastefromword/plugin.js	(revision 4717)
@@ -76,14 +76,18 @@
 		loadFilterRules : function( callback )
 		{
+
 			var isLoaded = CKEDITOR.cleanWord;
-			var filterFilePath = CKEDITOR.getUrl( this.path
-						+ 'filter/'
-						+ ( CKEDITOR.config.pasteFromWordCleanUpFile || 'default' )
-						+ '.js' );
 
-			isLoaded ?
-				callback() :
+			if ( isLoaded )
+				callback();
+			else
+			{
+				var filterFilePath = CKEDITOR.getUrl( 
+						CKEDITOR.config.pasteFromWordCleanupFile 
+						|| ( this.path + 'filter/default.js' ) );
+
 				// Load with busy indicator.
 				CKEDITOR.scriptLoader.load( filterFilePath, callback, null, false, true );
+			}
 
 			return !isLoaded;
@@ -96,5 +100,5 @@
  * @name CKEDITOR.config.pasteFromWordPromptCleanup
  * @type Boolean
- * @default true
+ * @default undefined
  * @example
  * config.pasteFromWordPromptCleanup = true;
@@ -104,9 +108,9 @@
  * The file that provides the MS-Word Filtering rules.
  * Note: It's a global configuration which are shared by all editor instances.
- * @name CKEDITOR.config.pasteFromWordCleanUpFile
+ * @name CKEDITOR.config.pasteFromWordCleanupFile
  * @type String
  * @default 'default'
  * @example
  * // Load from 'pastefromword' plugin 'filter' sub folder (custom.js file).
- * CKEDITOR.config.pasteFromWordCleanUpFile = 'custom';
+ * CKEDITOR.config.pasteFromWordCleanupFile = 'custom';
  */
