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
path: root/core
diff options
context:
space:
mode:
authormattab <matthieu.aubry@gmail.com>2014-09-08 14:51:31 +0400
committermattab <matthieu.aubry@gmail.com>2014-09-08 14:51:33 +0400
commit1415b5e1b88adc16f352c786c2681356da9ba082 (patch)
tree6eb1aa5b17deca2269a0c49af8d8b1f76aa2f750 /core
parent34a50e79eb0e6f2efb3e629000e08fa86ef8168a (diff)
refs #6162 do not display nb_users in all reports within Scheduled reports + fix some tests
Diffstat (limited to 'core')
-rw-r--r--core/Plugin/Report.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/core/Plugin/Report.php b/core/Plugin/Report.php
index 71d655f6a7..32b4e597b8 100644
--- a/core/Plugin/Report.php
+++ b/core/Plugin/Report.php
@@ -97,7 +97,7 @@ class Report
* @var array
* @api
*/
- protected $metrics = array('nb_visits', 'nb_uniq_visitors', 'nb_actions', 'nb_users');
+ protected $metrics = array('nb_visits', 'nb_uniq_visitors', 'nb_actions');
// for a little performance improvement we avoid having to call Metrics::getDefaultMetrics for each report
/**