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:
authormattab <matthieu.aubry@gmail.com>2013-11-15 06:38:47 +0400
committermattab <matthieu.aubry@gmail.com>2013-11-15 06:38:47 +0400
commitc6d2177215e616042933246dab5496e621bb0907 (patch)
tree5c929cfa162a8fc242cb52a9f97d46baa91288a5 /core/Archive.php
parent3e5f6a5adb9e43f4dd6c1b364f62d898414929e6 (diff)
refs #4278 Renames + New hook to let plugins modify idSites to archive
Diffstat (limited to 'core/Archive.php')
-rw-r--r--core/Archive.php4
1 files changed, 2 insertions, 2 deletions
diff --git a/core/Archive.php b/core/Archive.php
index b95544dfbc..1f9d571fb8 100644
--- a/core/Archive.php
+++ b/core/Archive.php
@@ -610,7 +610,7 @@ class Archive
continue;
}
- $this->prepareArchives($archiveGroups, $site, $period);
+ $this->prepareArchive($archiveGroups, $site, $period);
}
}
}
@@ -779,7 +779,7 @@ class Archive
* @param $site
* @param $period
*/
- private function prepareArchives(array $archiveGroups, Site $site, Period $period)
+ private function prepareArchive(array $archiveGroups, Site $site, Period $period)
{
$parameters = new ArchiveProcessor\Parameters($site, $period, $this->params->getSegment());
$archiveLoader = new ArchiveProcessor\Loader($parameters);