Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/matomo-org/matomo.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'core/Archive.php')
-rw-r--r--core/Archive.php3
1 files changed, 2 insertions, 1 deletions
diff --git a/core/Archive.php b/core/Archive.php
index 1086d9ba36..3b393c3696 100644
--- a/core/Archive.php
+++ b/core/Archive.php
@@ -610,7 +610,8 @@ class Archive
continue;
}
- $processing = new ArchiveProcessor($period, $site, $this->params->getSegment());
+ $parameters = new ArchiveProcessor\Parameters($period, $site, $this->params->getSegment());
+ $processing = new ArchiveProcessor\Loader($parameters);
// process for each plugin as well
foreach ($archiveGroups as $plugin) {