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:
authordiosmosis <benaka@piwik.pro>2014-11-08 07:15:11 +0300
committerdiosmosis <benaka@piwik.pro>2014-11-08 07:15:11 +0300
commit97dc9e2897fd5d365926af05078cf4f9941dd01a (patch)
tree5968b89ca0d2b099107bf5e91f9ecf3db3eaa279 /plugins/Contents
parent6bc507763db1f66f26c421c8bb736a312b9871d1 (diff)
Rename Metric::getColumn to Metric::getMetric and get rid of Metrics\Base.
Diffstat (limited to 'plugins/Contents')
-rw-r--r--plugins/Contents/Metrics/InteractionRate.php4
1 files changed, 2 insertions, 2 deletions
diff --git a/plugins/Contents/Metrics/InteractionRate.php b/plugins/Contents/Metrics/InteractionRate.php
index 41efeac82a..6e577e0e98 100644
--- a/plugins/Contents/Metrics/InteractionRate.php
+++ b/plugins/Contents/Metrics/InteractionRate.php
@@ -30,8 +30,8 @@ class InteractionRate extends ProcessedMetric
public function compute(Row $row)
{
- $interactions = $this->getColumn($row, 'nb_interactions');
- $impressions = $this->getColumn($row, 'nb_impressions');
+ $interactions = $this->getMetric($row, 'nb_interactions');
+ $impressions = $this->getMetric($row, 'nb_impressions');
return Piwik::getQuotientSafe($interactions, $impressions, $precision = 4);
}