aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorRubén Calvo <rubencm@gmail.com>2017-03-11 20:39:16 +0100
committerRubén Calvo <rubencm@gmail.com>2017-03-13 22:20:38 +0100
commit68c167fe7a5f0c86d97c9c3dda30f66d9df5b032 (patch)
tree4ed38596f3d9dba2c555b6b846c5bbc31e6a5bf9
parent891aab05935e9ebc237a83cef0b248998cb5fccf (diff)
downloadforums-68c167fe7a5f0c86d97c9c3dda30f66d9df5b032.tar
forums-68c167fe7a5f0c86d97c9c3dda30f66d9df5b032.tar.gz
forums-68c167fe7a5f0c86d97c9c3dda30f66d9df5b032.tar.bz2
forums-68c167fe7a5f0c86d97c9c3dda30f66d9df5b032.tar.xz
forums-68c167fe7a5f0c86d97c9c3dda30f66d9df5b032.zip
[ticket/15123] removed blank spaces
PHPBB3-15123
-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();