aboutsummaryrefslogtreecommitdiffstats
path: root/phpBB/phpbb/console/command
diff options
context:
space:
mode:
authorJoas Schilling <nickvergessen@gmx.de>2014-01-08 23:56:50 +0100
committerJoas Schilling <nickvergessen@gmx.de>2014-01-08 23:56:50 +0100
commit52c452c768b30fa479e91faee548abf5038f2642 (patch)
tree08e9429c79b88968508dbae5bbeb60780db6050b /phpBB/phpbb/console/command
parent98200161fc642ce447395a4b8db3b1a3c674c734 (diff)
downloadforums-52c452c768b30fa479e91faee548abf5038f2642.tar
forums-52c452c768b30fa479e91faee548abf5038f2642.tar.gz
forums-52c452c768b30fa479e91faee548abf5038f2642.tar.bz2
forums-52c452c768b30fa479e91faee548abf5038f2642.tar.xz
forums-52c452c768b30fa479e91faee548abf5038f2642.zip
[ticket/12039] Do not colour returned value in get command
PHPBB3-12039
Diffstat (limited to 'phpBB/phpbb/console/command')
-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
{