Reputation: 550
Problem:
When I use ClassRegistry::init
to initialize plugin2 and call the plugin2.mod, it is calling plugin1.mod! Can somebody tell me what wrong here is?
Thank you.
Upvotes: 0
Views: 221
Reputation: 21743
in 2.0 this is not possible (anymore). class paths are cached (inside App class) and therefore can use a class name only once.
You need to use different class names.
Upvotes: 1