diff --git a/features.module b/features.module index 6aeb2d7..5a6c5fe 100644 --- a/features.module +++ b/features.module @@ -607,6 +607,11 @@ function features_get_info($type = 'module', $name = NULL, $reset = FALSE) { $files = array_filter($files, 'features_filter_hidden'); foreach ($files as $row) { + // Remove modification timestamp, added in Drupal 7.33. + if (isset($row->info['mtime'])) { + unset($row->info['mtime']); + } + // If module is no longer enabled, remove it from the ignored orphans list. if (in_array($row->name, $ignored, TRUE) && !$row->status) { $key = array_search($row->name, $ignored, TRUE);