Merge pull request #3020 from witekest/disable_fy

Disable aggregating over financial year. Thx @witekest
This commit is contained in:
Douglas DeMaio 2023-09-28 18:49:30 +02:00 committed by GitHub
commit 864b17693c
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -154,7 +154,7 @@ function subprocess_count()
function aggregate_all($period)
{
global $CACHE_DIR;
$intervals = ['day' => 'Y-m-d', 'week' => 'Y-W', 'month' => 'Y-m', 'FQ' => null, 'FY' => null];
$intervals = ['day' => 'Y-m-d', 'week' => 'Y-W', 'month' => 'Y-m', 'FQ' => null];
$merged = [];
$merged_protocol = [];
$date_previous = null;