aboutsummaryrefslogtreecommitdiffstats
path: root/phpBB/phpbb/console
diff options
context:
space:
mode:
authorhubaishan <saeed@hubaishan.com>2017-11-01 08:48:21 +0300
committerMarc Alexander <admin@m-a-styles.de>2017-12-03 15:01:31 +0100
commit03b3b38db17c5fc554f54aed3f3fc1941279a04e (patch)
tree349112957459e472594d0ca719765edb7638a4c3 /phpBB/phpbb/console
parent131c26449228221f0028711e41ab79191ab2c25a (diff)
downloadforums-03b3b38db17c5fc554f54aed3f3fc1941279a04e.tar
forums-03b3b38db17c5fc554f54aed3f3fc1941279a04e.tar.gz
forums-03b3b38db17c5fc554f54aed3f3fc1941279a04e.tar.bz2
forums-03b3b38db17c5fc554f54aed3f3fc1941279a04e.tar.xz
forums-03b3b38db17c5fc554f54aed3f3fc1941279a04e.zip
[ticket/15433] Fix phpbbcli can enable non-existent extension
Fix phpbbcli can enable non-existent extension PHPBB3-15433
Diffstat (limited to 'phpBB/phpbb/console')
-rw-r--r--phpBB/phpbb/console/command/extension/enable.php7
1 files changed, 7 insertions, 0 deletions
diff --git a/phpBB/phpbb/console/command/extension/enable.php b/phpBB/phpbb/console/command/extension/enable.php
index f92de0069c..a6f5b10e86 100644
--- a/phpBB/phpbb/console/command/extension/enable.php
+++ b/phpBB/phpbb/console/command/extension/enable.php
@@ -37,6 +37,13 @@ class enable extends command
$io = new SymfonyStyle($input, $output);
$name = $input->getArgument('extension-name');
+
+ if (!$this->manager->is_available($name))
+ {
+ $io->error($this->user->lang('CLI_EXTENSION_NOT_EXIST', $name));
+ return 1;
+ }
+
$extension = $this->manager->get_extension($name);
if (!$extension->is_enableable())