1
0
mirror of https://github.com/flarum/core.git synced 2025-08-03 23:17:43 +02:00

Merge pull request #1398 from datitisev/patch-1

Fix 'Debug mode' in InfoCommand not showing
This commit is contained in:
Franz Liedke
2018-03-22 08:15:21 +01:00
committed by GitHub

View File

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