diff --git a/core/modules/update/update.compare.inc b/core/modules/update/update.compare.inc index 02ca3ce8160..9dffec60a2a 100644 --- a/core/modules/update/update.compare.inc +++ b/core/modules/update/update.compare.inc @@ -41,10 +41,9 @@ function update_process_project_info(&$projects) { if (preg_match('/^(\d+\.x-)?(\d+)\..*$/', $info['version'], $matches)) { $info['major'] = $matches[2]; } - elseif (!isset($info['major'])) { + else { // This would only happen for version strings that don't follow the - // drupal.org convention. We let contribs define "major" in their - // .info.yml in this case, and only if that's missing would we hit this. + // drupal.org convention. $info['major'] = -1; } }