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 00:32:55 +0300
committerdiosmosis <benaka@piwik.pro>2014-11-09 00:32:55 +0300
commit47145e0b8993dfb576a230c32de04bc3cc7b1d26 (patch)
tree94f9fc5d2ccb0eadbc397a78031b5fab1c749c34 /plugins/Events
parent756565b2263d3466a5e29f81621bdee53fbda5cf (diff)
Fixing more tests.
Diffstat (limited to 'plugins/Events')
-rw-r--r--plugins/Events/Reports/GetAction.php2
-rw-r--r--plugins/Events/Reports/GetCategory.php2
-rw-r--r--plugins/Events/Reports/GetName.php2
3 files changed, 3 insertions, 3 deletions
diff --git a/plugins/Events/Reports/GetAction.php b/plugins/Events/Reports/GetAction.php
index 4fa80bf4e1..84f750e264 100644
--- a/plugins/Events/Reports/GetAction.php
+++ b/plugins/Events/Reports/GetAction.php
@@ -20,7 +20,7 @@ class GetAction extends Base
$this->dimension = new EventAction();
$this->name = Piwik::translate('Events_EventActions');
$this->documentation = ''; // TODO
- $this->metrics = array('nb_events', 'sum_event_value', 'min_event_value', 'max_event_value', 'avg_event_value', 'nb_events_with_value');
+ $this->metrics = array('nb_events', 'sum_event_value', 'min_event_value', 'max_event_value', 'nb_events_with_value');
if (Common::getRequestVar('secondaryDimension', false) == 'eventCategory') {
$this->actionToLoadSubTables = 'getCategoryFromNameId';
} else {
diff --git a/plugins/Events/Reports/GetCategory.php b/plugins/Events/Reports/GetCategory.php
index 9d3817cd71..be867705ea 100644
--- a/plugins/Events/Reports/GetCategory.php
+++ b/plugins/Events/Reports/GetCategory.php
@@ -20,7 +20,7 @@ class GetCategory extends Base
$this->dimension = new EventCategory();
$this->name = Piwik::translate('Events_EventCategories');
$this->documentation = ''; // TODO
- $this->metrics = array('nb_events', 'sum_event_value', 'min_event_value', 'max_event_value', 'avg_event_value', 'nb_events_with_value');
+ $this->metrics = array('nb_events', 'sum_event_value', 'min_event_value', 'max_event_value', 'nb_events_with_value');
if (Common::getRequestVar('secondaryDimension', false) == 'eventName') {
$this->actionToLoadSubTables = 'getNameFromCategoryId';
} else {
diff --git a/plugins/Events/Reports/GetName.php b/plugins/Events/Reports/GetName.php
index 1f97eb7099..aa21f968be 100644
--- a/plugins/Events/Reports/GetName.php
+++ b/plugins/Events/Reports/GetName.php
@@ -20,7 +20,7 @@ class GetName extends Base
$this->dimension = new EventName();
$this->name = Piwik::translate('Events_EventNames');
$this->documentation = ''; // TODO
- $this->metrics = array('nb_events', 'sum_event_value', 'min_event_value', 'max_event_value', 'avg_event_value', 'nb_events_with_value');
+ $this->metrics = array('nb_events', 'sum_event_value', 'min_event_value', 'max_event_value', 'nb_events_with_value');
if (Common::getRequestVar('secondaryDimension', false) == 'eventCategory') {
$this->actionToLoadSubTables = 'getCategoryFromNameId';
} else {