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/VisitorInterest
parentdd2140c8c3faf2cfca30fd6fea0350ca953695da (diff)
Renaming ArchiveProcessing in comments as well, adding missing header
Diffstat (limited to 'plugins/VisitorInterest')
-rw-r--r--plugins/VisitorInterest/VisitorInterest.php8
1 files changed, 4 insertions, 4 deletions
diff --git a/plugins/VisitorInterest/VisitorInterest.php b/plugins/VisitorInterest/VisitorInterest.php
index 583e8c31da..c2a46f1f9e 100644
--- a/plugins/VisitorInterest/VisitorInterest.php
+++ b/plugins/VisitorInterest/VisitorInterest.php
@@ -125,9 +125,9 @@ class Piwik_VisitorInterest extends Piwik_Plugin
function archivePeriod($notification)
{
- $archiveProcessing = $notification->getNotificationObject();
+ $archiveProcessor = $notification->getNotificationObject();
- $archiving = new Piwik_VisitorInterest_Archiver($archiveProcessing);
+ $archiving = new Piwik_VisitorInterest_Archiver($archiveProcessor);
if($archiving->shouldArchive()) {
$archiving->archivePeriod();
}
@@ -135,9 +135,9 @@ class Piwik_VisitorInterest extends Piwik_Plugin
public function archiveDay($notification)
{
- $archiveProcessing = $notification->getNotificationObject();
+ $archiveProcessor = $notification->getNotificationObject();
- $archiving = new Piwik_VisitorInterest_Archiver($archiveProcessing);
+ $archiving = new Piwik_VisitorInterest_Archiver($archiveProcessor);
if($archiving->shouldArchive()) {
$archiving->archiveDay();
}