I'm trying to override a community Adminhtml controller that override already "Mage_Adminhtml"
Community module A with the first override
...
<admin>
<routers>
...
<adminhtml>
<args>
<modules>
<ModuleA before="Mage_Adminhtml">NameSpaceA_ModuleA_Adminhtml</ModuleA>
</modules>
</args>
</adminhtml>
</routers>
</admin>
...
I would like to make some changes, so.. Local module B
...
<admin>
<routers>
...
<adminhtml>
<args>
<modules>
<NameSpaceB_ModuleB before="NameSpaceA_ModuleA_Adminhtml">NameSpaceB_ModuleB_Adminhtml</NameSpaceB_ModuleB>
</modules>
</args>
</adminhtml>
</routers>
</admin>
...
The local module B depends of module A (<depends>
tag), cache is off
The local module B is used, I already override some Adminhtml blocks and models
The local controller is never called, and I tried many things but no results
Thank a lot for any help