aboutsummaryrefslogtreecommitdiffstats
path: root/phpBB/phpbb
diff options
context:
space:
mode:
Diffstat (limited to 'phpBB/phpbb')
-rw-r--r--phpBB/phpbb/console/command/extension/disable.php2
-rw-r--r--phpBB/phpbb/console/command/extension/enable.php2
2 files changed, 2 insertions, 2 deletions
diff --git a/phpBB/phpbb/console/command/extension/disable.php b/phpBB/phpbb/console/command/extension/disable.php
index be5c77a9a0..323f9b6d83 100644
--- a/phpBB/phpbb/console/command/extension/disable.php
+++ b/phpBB/phpbb/console/command/extension/disable.php
@@ -43,7 +43,7 @@ class disable extends command
$io->error($this->user->lang('CLI_EXTENSION_ALREADY_DISABLED', $name));
return 1;
}
-
+
$this->manager->disable($name);
$this->manager->load_extensions();
diff --git a/phpBB/phpbb/console/command/extension/enable.php b/phpBB/phpbb/console/command/extension/enable.php
index 2de7498c71..e6b5f66c7f 100644
--- a/phpBB/phpbb/console/command/extension/enable.php
+++ b/phpBB/phpbb/console/command/extension/enable.php
@@ -43,7 +43,7 @@ class enable extends command
$io->error($this->user->lang('CLI_EXTENSION_ALREADY_ENABLED', $name));
return 1;
}
-
+
$this->manager->enable($name);
$this->manager->load_extensions();