Issue #3072702 followup: Core extensions should not need to specify the new core_version_requirement in *.info.yml files so that 9.0.x can be installed

merge-requests/2419/head
Alex Pott 2019-10-15 16:08:46 +01:00
parent e37031e09a
commit bbda99e0a6
No known key found for this signature in database
GPG Key ID: 31905460D4A69276
1 changed files with 1 additions and 1 deletions

View File

@ -33,7 +33,7 @@ class InfoParserDynamic implements InfoParserInterface {
if ($app_root === NULL) { if ($app_root === NULL) {
// @todo https://www.drupal.org/project/drupal/issues/3087975 Require // @todo https://www.drupal.org/project/drupal/issues/3087975 Require
// $app_root argument. // $app_root argument.
\Drupal::hasService('app.root') ? (string) \Drupal::service('app.root') : DRUPAL_ROOT; $app_root = \Drupal::hasService('app.root') ? (string) \Drupal::service('app.root') : DRUPAL_ROOT;
} }
$this->root = $app_root; $this->root = $app_root;
} }