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:
Diffstat (limited to 'plugins/PrivacyManager/PrivacyManager.php')
-rw-r--r--plugins/PrivacyManager/PrivacyManager.php10
1 files changed, 5 insertions, 5 deletions
diff --git a/plugins/PrivacyManager/PrivacyManager.php b/plugins/PrivacyManager/PrivacyManager.php
index a538a96e08..dc0b436c61 100644
--- a/plugins/PrivacyManager/PrivacyManager.php
+++ b/plugins/PrivacyManager/PrivacyManager.php
@@ -332,7 +332,7 @@ class Piwik_PrivacyManager extends Piwik_Plugin
private static function getGoalMetricsToKeep()
{
// keep all goal metrics
- return array_values(Piwik_Archive::$mappingFromIdToNameGoal);
+ return array_values(Piwik_Metrics::$mappingFromIdToNameGoal);
}
/**
@@ -354,12 +354,12 @@ class Piwik_PrivacyManager extends Piwik_Plugin
foreach ($goalMetricsToKeep as $metric) {
for ($i = 1; $i <= $maxGoalId; ++$i) // maxGoalId can be 0
{
- $metricsToKeep[] = Piwik_Goals::getRecordName($metric, $i);
+ $metricsToKeep[] = Piwik_Goals_Archiver::getRecordName($metric, $i);
}
- $metricsToKeep[] = Piwik_Goals::getRecordName($metric);
- $metricsToKeep[] = Piwik_Goals::getRecordName($metric, Piwik_Tracker_GoalManager::IDGOAL_ORDER);
- $metricsToKeep[] = Piwik_Goals::getRecordName($metric, Piwik_Tracker_GoalManager::IDGOAL_CART);
+ $metricsToKeep[] = Piwik_Goals_Archiver::getRecordName($metric);
+ $metricsToKeep[] = Piwik_Goals_Archiver::getRecordName($metric, Piwik_Tracker_GoalManager::IDGOAL_ORDER);
+ $metricsToKeep[] = Piwik_Goals_Archiver::getRecordName($metric, Piwik_Tracker_GoalManager::IDGOAL_CART);
}
}