i am using custome module in my moduleThe code is as follows.
function mymodule_init() {
global $custom_theme;
$custom_theme = 'bluemarine';
init_theme();
}
And this works fine for all other pages except the block page(admin/build/block). The block page takes the default theme only. I want the custome theme assigned from mymodule to the block page. How can i do this?