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>2014-02-17 08:52:26 +0400
committermattab <matthieu.aubry@gmail.com>2014-02-17 08:52:26 +0400
commitc81846e19442c227e4a6576491cdebf92a3bb57f (patch)
tree4f42c1e0d7979c54f7d548936742f723829a2da5 /core/Archive.php
parentb391e7313a5c987299e1a82a1827a81c1add56f1 (diff)
Fixing bug where pre-processed segment would not be fully pre-process.
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 18e4243268..db1ca62ded 100644
--- a/core/Archive.php
+++ b/core/Archive.php
@@ -545,7 +545,7 @@ class Archive
// cache id archives for plugins we haven't processed yet
if (!empty($archiveGroups)) {
- if (!Rules::isArchivingDisabledFor($this->params->getSegment(), $this->getPeriodLabel())) {
+ if (!Rules::isArchivingDisabledFor($this->params->getIdSites(), $this->params->getSegment(), $this->getPeriodLabel())) {
$this->cacheArchiveIdsAfterLaunching($archiveGroups, $plugins);
} else {
@@ -644,7 +644,7 @@ class Archive
*/
private function getDoneStringForPlugin($plugin)
{
- return Rules::getDoneStringFlagFor($this->params->getSegment(), $this->getPeriodLabel(), $plugin);
+ return Rules::getDoneStringFlagFor($this->params->getIdSites(), $this->params->getSegment(), $this->getPeriodLabel(), $plugin);
}
private function getPeriodLabel()