commit 2783a17809b114b93fec735cf39632e4925327fb Author: Joel Pittet Date: Tue Apr 28 12:47:38 2015 -0700 deal with reset diff --git a/features.export.inc b/features.export.inc index 5f37c8c..f6a95b3 100644 --- a/features.export.inc +++ b/features.export.inc @@ -653,7 +653,7 @@ function features_get_storage($module_name) { function features_get_signature($state = 'default', $module_name, $component, $reset = FALSE) { switch ($state) { case 'cache': - if ($cache = cache_get('features_codecache') && !empty($cache->data)) { + if (!$reset && $cache = cache_get('features_codecache') && !empty($cache->data)) { $codecache = $cache->data; } return isset($codecache[$module_name][$component]) ? $codecache[$module_name][$component] : FALSE;