mirror of
https://github.com/phpbb/phpbb.git
synced 2025-07-27 20:39:08 +00:00
[ticket/12039] Do not colour returned value in get command
PHPBB3-12039
This commit is contained in:
parent
98200161fc
commit
52c452c768
1 changed files with 1 additions and 1 deletions
|
@ -34,7 +34,7 @@ class get extends command
|
||||||
|
|
||||||
if (isset($this->config[$key]))
|
if (isset($this->config[$key]))
|
||||||
{
|
{
|
||||||
$output->writeln("<info>{$this->config[$key]}</info>");
|
$output->writeln($this->config[$key]);
|
||||||
}
|
}
|
||||||
else
|
else
|
||||||
{
|
{
|
||||||
|
|
Loading…
Add table
Reference in a new issue