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:
authorThomas Steur <tsteur@users.noreply.github.com>2016-04-12 07:02:13 +0300
committerThomas Steur <tsteur@users.noreply.github.com>2016-04-12 07:02:13 +0300
commite3677583a96ac5e87f5a22ef8685f7c36cf80c88 (patch)
treeed97ce137daabc9a59da396f811f167830d64d6f /plugins/Actions/Reports
parent527be7b41ec3f70e944431372845c129f604f32d (diff)
fix tests (#10040)
Diffstat (limited to 'plugins/Actions/Reports')
-rw-r--r--plugins/Actions/Reports/GetEntryPageTitles.php2
-rw-r--r--plugins/Actions/Reports/GetExitPageTitles.php3
2 files changed, 4 insertions, 1 deletions
diff --git a/plugins/Actions/Reports/GetEntryPageTitles.php b/plugins/Actions/Reports/GetEntryPageTitles.php
index 5f81112116..6316983984 100644
--- a/plugins/Actions/Reports/GetEntryPageTitles.php
+++ b/plugins/Actions/Reports/GetEntryPageTitles.php
@@ -38,6 +38,8 @@ class GetEntryPageTitles extends Base
);
$this->order = 6;
$this->actionToLoadSubTables = $this->action;
+
+ $this->subcategoryId = 'Actions_SubmenuPagesEntry';
}
public function configureWidgets(WidgetsList $widgetsList, ReportWidgetFactory $factory)
diff --git a/plugins/Actions/Reports/GetExitPageTitles.php b/plugins/Actions/Reports/GetExitPageTitles.php
index 74ceaf6b17..1a61166170 100644
--- a/plugins/Actions/Reports/GetExitPageTitles.php
+++ b/plugins/Actions/Reports/GetExitPageTitles.php
@@ -29,6 +29,7 @@ class GetExitPageTitles extends Base
$this->name = Piwik::translate('Actions_ExitPageTitles');
$this->documentation = Piwik::translate('Actions_ExitPageTitlesReportDocumentation', '<br />')
. ' ' . Piwik::translate('General_UsePlusMinusIconsDocumentation');
+ $this->subcategoryId = 'Actions_SubmenuPagesExit';
$this->metrics = array('exit_nb_visits', 'nb_visits');
$this->processedMetrics = array(
@@ -37,7 +38,7 @@ class GetExitPageTitles extends Base
new ExitRate(),
new AveragePageGenerationTime()
);
- $this->order = 7;
+ $this->order = 7;
$this->actionToLoadSubTables = $this->action;
}