I applied SUP-6788 to my magento site version 1.5.0.1
I have this module BusinessDecision Interakting slider. And according to the Magento installation notes for APPSECC 1034 I change the code of config.xml
== original code ==
<admin>
<routers>
<businessdecision_interaktingslider>
<use>admin</use>
<args>
<module>BusinessDecision_Interaktingslider</module>
<frontName>interaktingslider</frontName>
</args>
</businessdecision_interaktingslider>
</routers>
</admin>
=== end original code
To the following:
=== new code====
<admin>
<routers>
<adminhtml>
<args>
<modules>
<custom_module after="Mage_Adminhtml">BusinessDecision_Interaktingslider_Adminhtml</custom_module>
</modules>
</args>
</adminhtml>
</routers>
</admin>
=== end new code ======
Flushed the caches but,
Still the urls in admin give a page not found.
Any one knows what I`m doing wrong.