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-24 07:29:36 +0300
committerdiosmosis <benaka@piwik.pro>2014-11-24 07:29:36 +0300
commit09212d501398efd110a40eb18cd815b745297320 (patch)
tree5fd0a4fa73b9971832e999e8205995a69bd9fed3 /plugins/VisitorInterest/Reports/GetNumberOfVisitsByVisitCount.php
parent77c961ca304deff05de7587d0b6d9297a21eae44 (diff)
Remove nb_visits_percentage from metrics array in Report.
Diffstat (limited to 'plugins/VisitorInterest/Reports/GetNumberOfVisitsByVisitCount.php')
-rw-r--r--plugins/VisitorInterest/Reports/GetNumberOfVisitsByVisitCount.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/plugins/VisitorInterest/Reports/GetNumberOfVisitsByVisitCount.php b/plugins/VisitorInterest/Reports/GetNumberOfVisitsByVisitCount.php
index 01ab2ac26d..0cebfe2e2a 100644
--- a/plugins/VisitorInterest/Reports/GetNumberOfVisitsByVisitCount.php
+++ b/plugins/VisitorInterest/Reports/GetNumberOfVisitsByVisitCount.php
@@ -23,7 +23,7 @@ class GetNumberOfVisitsByVisitCount extends Base
$this->name = Piwik::translate('VisitorInterest_visitsByVisitCount');
$this->documentation = Piwik::translate('VisitorInterest_WidgetVisitsByNumDocumentation')
. '<br />' . Piwik::translate('General_ChangeTagCloudView');
- $this->metrics = array('nb_visits', 'nb_visits_percentage');
+ $this->metrics = array('nb_visits');
$this->processedMetrics = array(
new VisitsPercent()
);