I was trying to get Magento to load the core files from the adminHtml of the theme I'm using instead of the default core location and added the following code to my extension:
<stores>
<admin>
<!-- default admin design package and theme -->
<design>
<package>
<name>fortis</name>
</package>
<theme>
<default>default</default>
</theme>
</design>
</admin>
Now all I get is a white screen when I go to webshop/admin. I can't even log in anymore. When I remove the code from my extensions config file and even if I disable the extension all I get is a white screen.
Anyone know how to fix this?
Thanks.