﻿id	summary	reporter	owner	description	type	status	priority	milestone	component	version	resolution	keywords	cc
115	Use PluginsPath for each plugin	Alfonso Martínez de Lizarrondo	Alfonso Martínez de Lizarrondo	"Now the PluginsPath configuration setting is used only once at the end of the parsing, so if you want to load plugins from different sources you have to be sure that each one has specifed the path at load time:


{{{
FCKConfig.PluginsPath = FCKConfig.BasePath + 'plugins/' ;

FCKConfig.Plugins.Add( 'autogrow' ) ;

// Non standard plugins
FCKConfig.Plugins.Add( 'rtSpellCheck', '', '/customPlugins/' ) ;

}}}

but it would seem more logical to be able to change the PluginsPath and so the next plugins will load from that path:

{{{
FCKConfig.PluginsPath = FCKConfig.BasePath + 'plugins/' ;

FCKConfig.Plugins.Add( 'autogrow' ) ;


// Non standard plugins
FCKConfig.PluginsPath = '/customPlugins/' ;

FCKConfig.Plugins.Add( 'rtSpellCheck' ) ;

}}}

I've checked the code in [149] so it can be discussed and reviewed before it gets added to the trunk.
"	New Feature	closed	Normal		General		invalid		
