1
0
mirror of https://github.com/flarum/core.git synced 2025-02-24 11:13:40 +01:00

Fix "Debug mode" in InfoCommand not showing

This commit is contained in:
David Sevilla Martín 2018-03-21 20:00:14 -04:00 committed by GitHub
parent 0cf351edb9
commit baa11acfa8
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -72,7 +72,7 @@ class InfoCommand extends AbstractCommand
$this->info('Base URL: '.$this->config['url']);
$this->info('Installation path: '.getcwd());
$this->info('Debug mode '.$this->config['debug'] ? 'ON' : 'off');
$this->info('Debug mode '.($this->config['debug'] ? 'ON' : 'off'));
}
/**