mirror of
https://github.com/invoiceninja/invoiceninja.git
synced 2025-07-09 03:14:30 -04:00
Fix for scheduled reports
This commit is contained in:
parent
803e4c4cf8
commit
99347c853a
@ -31,7 +31,7 @@ class RunReport extends Job
|
||||
|
||||
$reportType = $this->reportType;
|
||||
$config = $this->config;
|
||||
$config['subgroup'] = $config['subgroup'] ?: false; // don't yet support charts in export
|
||||
$config['subgroup'] = ! empty($config['subgroup']) ? $config['subgroup'] : false; // don't yet support charts in export
|
||||
|
||||
$isExport = $this->isExport;
|
||||
$reportClass = '\\App\\Ninja\\Reports\\' . Str::studly($reportType) . 'Report';
|
||||
|
Loading…
x
Reference in New Issue
Block a user