Merge branch 'develop' into 5.8-dev

# Conflicts:
#	config/firefly.php
#	frontend/src/i18n/nb_NO/index.js
#	frontend/src/i18n/nl_NL/index.js
#	frontend/src/i18n/ru_RU/index.js
This commit is contained in:
James Cole
2022-07-17 08:18:18 +02:00
38 changed files with 937 additions and 897 deletions

View File

@@ -422,15 +422,6 @@ trait PeriodOverview
Log::debug(sprintf('End for getNoCategoryPeriodOverview() is %s', $end->format('Y-m-d')));
// properties for cache
$cache = new CacheProperties;
$cache->addProperty($start);
$cache->addProperty($end);
$cache->addProperty('no-category-period-entries');
if ($cache->has()) {
return $cache->get();
}
$dates = app('navigation')->blockPeriods($start, $end, $range);
$entries = [];
@@ -475,7 +466,6 @@ trait PeriodOverview
];
}
Log::debug('End of loops');
$cache->store($entries);
return $entries;
}