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-06 06:44:29 +0400
committermattab <matthieu.aubry@gmail.com>2013-11-06 06:44:29 +0400
commitfff42d8894d7560a0a80848b92023ef5db826496 (patch)
tree96299aa4cb94102f4cc187f88f72798832ab1582 /core/ArchiveProcessor
parentca129eccf322bbc0e386ff497b984cd2b135bbbe (diff)
Fix build
Diffstat (limited to 'core/ArchiveProcessor')
-rw-r--r--core/ArchiveProcessor/Loader.php2
-rw-r--r--core/ArchiveProcessor/Parameters.php12
2 files changed, 6 insertions, 8 deletions
diff --git a/core/ArchiveProcessor/Loader.php b/core/ArchiveProcessor/Loader.php
index b70a748ca1..1adcccee4c 100644
--- a/core/ArchiveProcessor/Loader.php
+++ b/core/ArchiveProcessor/Loader.php
@@ -15,10 +15,8 @@ use Piwik\Config;
use Piwik\DataAccess\ArchiveSelector;
use Piwik\DataAccess\ArchiveWriter;
use Piwik\Date;
-use Piwik\Log;
use Piwik\Metrics;
use Piwik\Period;
-use Piwik\Plugin\Archiver;
/**
* This class manages the ArchiveProcessor and
diff --git a/core/ArchiveProcessor/Parameters.php b/core/ArchiveProcessor/Parameters.php
index 790a8742e2..abcd242f1a 100644
--- a/core/ArchiveProcessor/Parameters.php
+++ b/core/ArchiveProcessor/Parameters.php
@@ -130,13 +130,13 @@ class Parameters
}
Log::verbose(
"'%s, idSite = %d (%s), segment '%s', report = '%s', UTC datetime [%s -> %s]",
- $this->params->getPeriod()->getLabel(),
- $this->params->getSite()->getId(),
+ $this->getPeriod()->getLabel(),
+ $this->getSite()->getId(),
$temporary,
- $this->params->getSegment()->getString(),
- $this->params->getRequestedPlugin(),
- $this->params->getDateStart()->getDateStartUTC(),
- $this->params->getDateEnd()->getDateEndUTC()
+ $this->getSegment()->getString(),
+ $this->getRequestedPlugin(),
+ $this->getDateStart()->getDateStartUTC(),
+ $this->getDateEnd()->getDateEndUTC()
);
}