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/CustomVariables
parentdd2140c8c3faf2cfca30fd6fea0350ca953695da (diff)
Renaming ArchiveProcessing in comments as well, adding missing header
Diffstat (limited to 'plugins/CustomVariables')
-rw-r--r--plugins/CustomVariables/CustomVariables.php8
1 files changed, 4 insertions, 4 deletions
diff --git a/plugins/CustomVariables/CustomVariables.php b/plugins/CustomVariables/CustomVariables.php
index d0c0b9d759..3f3421fe41 100644
--- a/plugins/CustomVariables/CustomVariables.php
+++ b/plugins/CustomVariables/CustomVariables.php
@@ -148,9 +148,9 @@ class Piwik_CustomVariables extends Piwik_Plugin
*/
public function archiveDay($notification)
{
- $archiveProcessing = $notification->getNotificationObject();
+ $archiveProcessor = $notification->getNotificationObject();
- $archiving = new Piwik_CustomVariables_Archiver($archiveProcessing);
+ $archiving = new Piwik_CustomVariables_Archiver($archiveProcessor);
if($archiving->shouldArchive()) {
$archiving->archiveDay();
}
@@ -161,8 +161,8 @@ class Piwik_CustomVariables extends Piwik_Plugin
*/
function archivePeriod($notification)
{
- $archiveProcessing = $notification->getNotificationObject();
- $archiving = new Piwik_CustomVariables_Archiver($archiveProcessing);
+ $archiveProcessor = $notification->getNotificationObject();
+ $archiving = new Piwik_CustomVariables_Archiver($archiveProcessor);
if($archiving->shouldArchive()) {
$archiving->archivePeriod();
}