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-06-13 09:31:17 +0400
committermattab <matthieu.aubry@gmail.com>2013-06-16 12:11:03 +0400
commite2b74053c61b0f3d6d44e11472f037a853f5e98a (patch)
treec56c9d5330d565d128e7535c00e990281bc063dd /plugins/VisitTime
parentdd2140c8c3faf2cfca30fd6fea0350ca953695da (diff)
Renaming ArchiveProcessing in comments as well, adding missing header
Diffstat (limited to 'plugins/VisitTime')
-rw-r--r--plugins/VisitTime/VisitTime.php8
1 files changed, 4 insertions, 4 deletions
diff --git a/plugins/VisitTime/VisitTime.php b/plugins/VisitTime/VisitTime.php
index 6208da6c64..b74a48f59e 100644
--- a/plugins/VisitTime/VisitTime.php
+++ b/plugins/VisitTime/VisitTime.php
@@ -132,9 +132,9 @@ class Piwik_VisitTime extends Piwik_Plugin
function archivePeriod($notification)
{
- $archiveProcessing = $notification->getNotificationObject();
+ $archiveProcessor = $notification->getNotificationObject();
- $archiving = new Piwik_VisitTime_Archiver($archiveProcessing);
+ $archiving = new Piwik_VisitTime_Archiver($archiveProcessor);
if($archiving->shouldArchive()) {
$archiving->archivePeriod();
}
@@ -143,8 +143,8 @@ class Piwik_VisitTime extends Piwik_Plugin
public function archiveDay($notification)
{
- $archiveProcessing = $notification->getNotificationObject();
- $archiving = new Piwik_VisitTime_Archiver($archiveProcessing);
+ $archiveProcessor = $notification->getNotificationObject();
+ $archiving = new Piwik_VisitTime_Archiver($archiveProcessor);
if($archiving->shouldArchive()) {
$archiving->archiveDay();
}