1
0
mirror of https://github.com/phpbb/phpbb.git synced 2025-02-24 12:03:21 +01:00

[ticket/12039] Do not colour returned value in get command

PHPBB3-12039
This commit is contained in:
Joas Schilling 2014-01-08 23:56:50 +01:00
parent 98200161fc
commit 52c452c768

View File

@ -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
{