diff --git a/phpBB/language/en/acp/extensions.php b/phpBB/language/en/acp/extensions.php index e65df90c9c..0a94481a87 100644 --- a/phpBB/language/en/acp/extensions.php +++ b/phpBB/language/en/acp/extensions.php @@ -156,6 +156,8 @@ $lang = array_merge($lang, array( 'ENABLE_PACKAGIST' => 'Enable Packagist usage', 'ENABLE_PACKAGIST_EXPLAIN' => 'TODO: text explaining why packagist shouldn\'t be enabled, dev usage, etc...', 'ENABLE_PACKAGIST_CONFIRM' => 'TODO: are you sure you ant to enable packagist?', + 'COMPOSER_REPOSITORIES' => 'Repositories', + 'COMPOSER_REPOSITORIES_EXPLAIN' => 'TODO: One repo per line', 'EXTENSION_MANAGED_SUCCESS' => 'The extension %s is now managed automatically.', 'EXTENSIONS_INSTALLED' => 'Extensions successfully installed.', diff --git a/phpBB/phpbb/composer/extension_manager.php b/phpBB/phpbb/composer/extension_manager.php index aef1513d4b..8a6a09680b 100644 --- a/phpBB/phpbb/composer/extension_manager.php +++ b/phpBB/phpbb/composer/extension_manager.php @@ -275,7 +275,7 @@ class extension_manager extends manager try { $io->writeError('ENABLING_EXTENSION', true, 1); - $this->extension_manager->enabling($package); + $this->extension_manager->enable($package); } catch (\Exception $e) {