1
0
mirror of https://github.com/phpbb/phpbb.git synced 2025-03-23 09:00:48 +01:00

[ticket/15349] Check if extension is enableable before enable

PHPBB3-15346
This commit is contained in:
Rubén Calvo 2017-09-07 12:53:44 +02:00
parent 1084b91b66
commit aa23af38d4

@ -37,6 +37,13 @@ class enable extends command
$io = new SymfonyStyle($input, $output);
$name = $input->getArgument('extension-name');
$extension = $this->manager->get_extension($name);
if (!$extension->is_enableable())
{
$io->error($this->user->lang('CLI_EXTENSION_NOT_ENABLEABLE', $name));
return 1;
}
if ($this->manager->is_enabled($name))
{