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:
Diffstat (limited to 'plugins/Actions/Reports/GetExitPageTitles.php')
-rw-r--r--plugins/Actions/Reports/GetExitPageTitles.php3
1 files changed, 2 insertions, 1 deletions
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;
}