Closed (fixed)
Project:
Warn Me!
Version:
6.x-1.x-dev
Component:
Code
Priority:
Normal
Category:
Bug report
Assigned:
Unassigned
Reporter:
Created:
15 Dec 2009 at 22:19 UTC
Updated:
29 Dec 2009 at 22:30 UTC
This appears to be caused by devel_themer, which needs a cache_clear when being disabled. See #213935: Installed an enable all.... Add some code like this when Warn Me disables modules:
// Clear the theme registry to workaround devel_themer - http://drupal.org/node/213935
cache_clear_all('theme_registry', 'cache', TRUE);
Comments
Comment #1
lyricnz commentedAargh, code formatter broke the code above. Try again:
// Clear the theme registry to workaround devel_themer - http://drupal.org/node/213935 cache_clear_all('theme_registry', 'cache', TRUE);Comment #2
lyricnz commentedApplied