denitz
Karma: 0
|
Re:"Invalid class name for loading" error - 2012/01/06 13:06
This is Remository autoloader's issue:
JPlugin::_construct() uses
| Code: | if(is_a($config['params'], 'JParameter')) {
|
Your autoloader is called but failed and issue error message. It is not correct behaviour, other autoloaders can't proceed next, besides as you see Joomla checks $config['params'] which is INI string and can contain any symbols (like :// or .. in this case).
Changed
| Code: | die ('Invalid class name for loading');
|
to
|