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-09 09:12:47 +0300
committerdiosmosis <benaka@piwik.pro>2014-11-09 09:12:47 +0300
commitccfc07ee093025d85cfc7f1a39ce57021dc7554a (patch)
tree59745ddf5db908cb10b3783bcf4b0f92e9d96be8 /plugins/VisitorInterest
parent773f85166aefd8a056f6ef931a5a2507b99b35bd (diff)
Fixing most of the tests.
Diffstat (limited to 'plugins/VisitorInterest')
-rw-r--r--plugins/VisitorInterest/Metrics/VisitsPercent.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/plugins/VisitorInterest/Metrics/VisitsPercent.php b/plugins/VisitorInterest/Metrics/VisitsPercent.php
index 8770f7051b..2b787f9c77 100644
--- a/plugins/VisitorInterest/Metrics/VisitsPercent.php
+++ b/plugins/VisitorInterest/Metrics/VisitsPercent.php
@@ -45,7 +45,7 @@ class VisitsPercent extends ProcessedMetric
{
$visits = $this->getMetric($row, 'nb_visits');
- return Piwik::getQuotientSafe($visits, $this->cachedTotalVisits, $precision = 2);
+ return Piwik::getQuotientSafe($visits, $this->cachedTotalVisits, $precision = 3);
}
public function format($value)