aboutsummaryrefslogtreecommitdiffstats
path: root/phpBB/phpbb/console/command/config/get.php
diff options
context:
space:
mode:
Diffstat (limited to 'phpBB/phpbb/console/command/config/get.php')
-rw-r--r--phpBB/phpbb/console/command/config/get.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/phpBB/phpbb/console/command/config/get.php b/phpBB/phpbb/console/command/config/get.php
index aeb40cff16..1f9781ea9c 100644
--- a/phpBB/phpbb/console/command/config/get.php
+++ b/phpBB/phpbb/console/command/config/get.php
@@ -34,7 +34,7 @@ class get extends command
if (isset($this->config[$key]))
{
- $output->writeln("<info>{$this->config[$key]}</info>");
+ $output->writeln($this->config[$key]);
}
else
{