I got it to work in 4.7
equinox - February 4, 2007 - 12:13
| Project: | Separate "management" theme for administrative pages |
| Version: | 4.7.x-1.x-dev |
| Component: | Documentation |
| Category: | feature request |
| Priority: | normal |
| Assigned: | Unassigned |
| Status: | active |
Description
The theme you wish to use must be enabled. Instead of selecting the theme to use in Settings you must hard code it into your module. Change line 49 in manage.module
$custom_theme = 'manage';
init_theme();replace the word 'manage' with the name of your chosen theme
$custom_theme = 'multiflex';
init_theme();FYI: module name really should be "admintheme" - I changed it in my install..
