File "admin_theme.module", line 157 (156 for the last dev version) :
if ((bool)variable_get($var, '0') && module_invoke($info['module'], 'admin_theme', 'check', $info['option'])) {
Must be :
if ((bool)variable_get($var, '0') && module_invoke($info['module'], 'admin_theme_check', $info['option'])) {
I'm too lazy to make a patch file ! ^^
Regards.
Comments
Comment #1
sebas5384 commentedI had the same problem and then I found this issue of this bug, so heres the patch to it.
@El Matador Y Tyrannos, hacking code without patches, is not recommended, even for your own project's health.
Cheers!
Comment #2
sebas5384 commentedwhoops! now with the right paths in the patch ;)
Comment #3
sebas5384 commentedWhopss again! wrong patch :( now is right and tested patch.
Comment #4
valderama commentedWorks, and seems like an obvious bug.
Comment #5
valderama commentedComment #7
justy commentedthis patch is rolled up into dev version.
Comment #8
justy commented