hey rouliendelavegas,
To temporarily fix the issue in the release we are running, modified one line in "piwik/plugins/PDFReports/PDFReports.php"
On line 503 there is the line:
Which I have changed to:
That will stop piwik from tripping up on any report set to send out "never" for the time being. I hope this helps!
To temporarily fix the issue in the release we are running, modified one line in "piwik/plugins/PDFReports/PDFReports.php"
On line 503 there is the line:
if (!$report['deleted'])
Which I have changed to:
if (!$report['deleted'] && $report['period'] != 'never')
That will stop piwik from tripping up on any report set to send out "never" for the time being. I hope this helps!