﻿id	summary	reporter	owner	description	type	status	priority	milestone	component	version	resolution	keywords	cc
8893	Error in documentation or bug in PasteFromWordCleanupFile option	Michał		"According to: http://docs.cksource.com/ckeditor_api/symbols/CKEDITOR.config.html#.pasteFromWordCleanupFile it should works when I add 
{{{
CKEDITOR.config.pasteFromWordCleanupFile = 'custom';
}}}
to config.js file, but it doesn't work.
This works fine: 
{{{
CKEDITOR.config.pasteFromWordCleanupFile = 'plugins/pastefromword/filter/custom.js';
}}}
Proposed fix to '''_source/plugins/pastefromword/plugin.js''' line 104
is change 

{{{
var filterFilePath = CKEDITOR.getUrl( CKEDITOR.config.pasteFromWordCleanupFile || ( this.path + 'filter/default.js' ) );
}}}
to something like:

{{{
var filterFilePath = CKEDITOR.getUrl((this.path+CKEDITOR.config.pasteFromWordCleanupFile+'.js') || ( this.path + 'filter/default.js' ) );
}}}
or fix description in Documentation.

"	Bug	new	Normal		Core : Pasting	3.6.2			
