core/lib/Drupal/Core/Config/ExtensionInstallStorage.php | 2 +- core/profiles/standard/src/Tests/StandardTest.php | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/core/lib/Drupal/Core/Config/ExtensionInstallStorage.php b/core/lib/Drupal/Core/Config/ExtensionInstallStorage.php index 00908dd..cb2833e 100644 --- a/core/lib/Drupal/Core/Config/ExtensionInstallStorage.php +++ b/core/lib/Drupal/Core/Config/ExtensionInstallStorage.php @@ -87,7 +87,7 @@ protected function getAllFolders() { $modules = $extensions['module']; if (!$this->includeProfile) { if ($install_profile = Settings::get('install_profile')) { - unset($modules[$install_profile]); + unset($modules[$install_profile]); } } $this->folders += $this->getComponentNames('module', array_keys($modules)); diff --git a/core/profiles/standard/src/Tests/StandardTest.php b/core/profiles/standard/src/Tests/StandardTest.php index eb0f970..b05285e 100644 --- a/core/profiles/standard/src/Tests/StandardTest.php +++ b/core/profiles/standard/src/Tests/StandardTest.php @@ -101,7 +101,7 @@ function testStandard() { $this->assertConfigSchema($typed_config, $name, $config->get()); } - // Ensure that configuration from the standard profile is not reused when + // Ensure that configuration from the Standard profile is not reused when // enabling a module again since it contains configuration that can not be // installed. For example, editor.editor.basic_html is editor configuration // that depends on the ckeditor module. The ckeditor module can not be