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:
authorChristian Raue <christian.raue@gmail.com>2014-07-10 17:42:26 +0400
committerChristian Raue <christian.raue@gmail.com>2014-07-15 14:13:03 +0400
commitf6de9efc06b11e067fe4f866377a94996628f796 (patch)
tree8fbeef2c680c9a5272a877ddd4ebfcdb1e075b1b /core/DataAccess
parentb51cad9130f4cd264015303e88bdab18195ee01c (diff)
removed unused variables
Diffstat (limited to 'core/DataAccess')
-rw-r--r--core/DataAccess/LogAggregator.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/core/DataAccess/LogAggregator.php b/core/DataAccess/LogAggregator.php
index 6c9efc8d64..851fa4f6e2 100644
--- a/core/DataAccess/LogAggregator.php
+++ b/core/DataAccess/LogAggregator.php
@@ -662,7 +662,7 @@ class LogAggregator
protected function getActionsMetricFields()
{
- return $availableMetrics = array(
+ return array(
Metrics::INDEX_NB_VISITS => "count(distinct " . self::LOG_ACTIONS_TABLE . ".idvisit)",
Metrics::INDEX_NB_UNIQ_VISITORS => "count(distinct " . self::LOG_ACTIONS_TABLE . ".idvisitor)",
Metrics::INDEX_NB_ACTIONS => "count(*)",