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 <thomas.steur@googlemail.com>2014-06-19 07:10:29 +0400
committerThomas Steur <thomas.steur@googlemail.com>2014-06-19 07:10:29 +0400
commite9aae52fb3bc392663ee19aa2a5f702a3ed71fbf (patch)
tree0259bfcda90bf8cafd5e95383fff4111cf70ca96 /plugins/CustomVariables/Reports
parent253b165e621953efcb692f985036e217920ba696 (diff)
make sure the ordering of reports is correct, pass an instance of a report to RenderReport
Diffstat (limited to 'plugins/CustomVariables/Reports')
-rw-r--r--plugins/CustomVariables/Reports/GetCustomVariables.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/plugins/CustomVariables/Reports/GetCustomVariables.php b/plugins/CustomVariables/Reports/GetCustomVariables.php
index bdfb89ea1e..b6f7e34666 100644
--- a/plugins/CustomVariables/Reports/GetCustomVariables.php
+++ b/plugins/CustomVariables/Reports/GetCustomVariables.php
@@ -24,6 +24,7 @@ class GetCustomVariables extends Base
$this->actionToLoadSubTables = 'getCustomVariablesValuesFromNameId';
$this->order = 10;
$this->widgetTitle = 'CustomVariables_CustomVariables';
+ $this->menuTitle = 'CustomVariables_CustomVariables';
}
public function configureView(ViewDataTable $view)
@@ -34,5 +35,4 @@ class GetCustomVariables extends Base
$view->requestConfig->filter_sort_column = 'nb_actions';
$view->requestConfig->filter_sort_order = 'desc';
}
-
}