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:
authormattab <matthieu.aubry@gmail.com>2014-04-12 13:21:54 +0400
committermattab <matthieu.aubry@gmail.com>2014-04-12 13:21:54 +0400
commit4e7ed602bbbfb8ac4db5bac752c9dc2850a66157 (patch)
tree19b6977f60ff3f3b4f13adc59119afcac8e814a3 /core/Plugin/ViewDataTable.php
parentc37e1190bcebe6c42cf51176e7f7ed0a2618f936 (diff)
refs #472 text to change dimension now for the report "Event Actions" will be "Secondary dimension is Event Name. Switch to: Event Category"
Diffstat (limited to 'core/Plugin/ViewDataTable.php')
-rw-r--r--core/Plugin/ViewDataTable.php4
1 files changed, 4 insertions, 0 deletions
diff --git a/core/Plugin/ViewDataTable.php b/core/Plugin/ViewDataTable.php
index dfbc537505..069e08deab 100644
--- a/core/Plugin/ViewDataTable.php
+++ b/core/Plugin/ViewDataTable.php
@@ -234,6 +234,10 @@ abstract class ViewDataTable implements ViewInterface
protected function assignRelatedReportsTitle()
{
+ if(!empty($this->config->related_reports_title)) {
+ // title already assigned by a plugin
+ return;
+ }
if(count($this->config->related_reports) == 1) {
$this->config->related_reports_title = Piwik::translate('General_RelatedReport') . ':';
} else {