diff options
author | Joas Schilling <nickvergessen@gmx.de> | 2014-01-08 23:56:50 +0100 |
---|---|---|
committer | Joas Schilling <nickvergessen@gmx.de> | 2014-01-08 23:56:50 +0100 |
commit | 52c452c768b30fa479e91faee548abf5038f2642 (patch) | |
tree | 08e9429c79b88968508dbae5bbeb60780db6050b /phpBB/phpbb/console/command | |
parent | 98200161fc642ce447395a4b8db3b1a3c674c734 (diff) | |
download | forums-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.php | 2 |
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 { |