diff options
author | David Rothstein <drothstein@gmail.com> | 2016-02-01 23:35:16 -0500 |
---|---|---|
committer | David Rothstein <drothstein@gmail.com> | 2016-02-01 23:35:16 -0500 |
commit | e6e00e8444caa3dce647ce46b01256084ce2048c (patch) | |
tree | a6934f13afc88567127a3b2604dc2a1ef1809d2e /includes | |
parent | 11e18568f951cb431b0e0e6514767f2516e0d75b (diff) | |
download | brdo-e6e00e8444caa3dce647ce46b01256084ce2048c.tar.gz brdo-e6e00e8444caa3dce647ce46b01256084ce2048c.tar.bz2 |
Issue #1191290 by klausi, David_Rothstein, Fabianx: system_cron() should not invoke hook_flush_caches() on every cron run
Diffstat (limited to 'includes')
-rw-r--r-- | includes/module.inc | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/includes/module.inc b/includes/module.inc index b92abcde9..0589ba787 100644 --- a/includes/module.inc +++ b/includes/module.inc @@ -733,6 +733,7 @@ function module_implements($hook, $sort = FALSE, $reset = FALSE) { drupal_static_reset('module_hook_info'); drupal_static_reset('drupal_alter'); cache_clear_all('hook_info', 'cache_bootstrap'); + cache_clear_all('system_cache_tables', 'cache'); return; } |