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>2013-07-01 06:08:36 +0400
committermattab <matthieu.aubry@gmail.com>2013-07-01 06:08:36 +0400
commit916848085adcc6504c9cb1757e8fc9cba3eee468 (patch)
treebe48f87a4ebbcb93277059ff6640292061f99900 /plugins/VisitorInterest
parent84bf3a5eab6ae6529690460e044fd7c908305b71 (diff)
* Enabling Twig 'strict_variables' so that we write best code possible, and learn early if some tpl code is not valid. Fixing few bugs that this uncovered
* refactoring the percent column label in getPercentVisitColumn() * removing indexBeforeMenu and putting directly in parent template Refs #4019
Diffstat (limited to 'plugins/VisitorInterest')
-rw-r--r--plugins/VisitorInterest/Controller.php2
-rw-r--r--plugins/VisitorInterest/VisitorInterest.php2
2 files changed, 2 insertions, 2 deletions
diff --git a/plugins/VisitorInterest/Controller.php b/plugins/VisitorInterest/Controller.php
index 1ee0d7755c..e2b9936c7f 100644
--- a/plugins/VisitorInterest/Controller.php
+++ b/plugins/VisitorInterest/Controller.php
@@ -73,7 +73,7 @@ class Piwik_VisitorInterest_Controller extends Piwik_Controller
$view->setColumnsToDisplay(array('label', 'nb_visits', 'nb_visits_percentage'));
$view->setSortedColumn('label', 'asc');
$view->setColumnTranslation('label', Piwik_Translate('VisitorInterest_VisitNum'));
- $view->setColumnTranslation('nb_visits_percentage', str_replace(' ', '&nbsp;', Piwik_Translate('General_ColumnPercentageVisits')));
+ $view->setColumnTranslation('nb_visits_percentage', Piwik_Metrics::getPercentVisitColumn());
$view->disableExcludeLowPopulation();
$view->disableOffsetInformationAndPaginationControls();
$view->disableShowAllViewsIcons();
diff --git a/plugins/VisitorInterest/VisitorInterest.php b/plugins/VisitorInterest/VisitorInterest.php
index c2a46f1f9e..d17750a662 100644
--- a/plugins/VisitorInterest/VisitorInterest.php
+++ b/plugins/VisitorInterest/VisitorInterest.php
@@ -80,7 +80,7 @@ class Piwik_VisitorInterest extends Piwik_Plugin
'dimension' => Piwik_Translate('VisitorInterest_visitsByVisitCount'),
'metrics' => array(
'nb_visits',
- 'nb_visits_percentage' => Piwik_Translate('General_ColumnPercentageVisits')
+ 'nb_visits_percentage' => Piwik_Metrics::getPercentVisitColumn(),
),
'processedMetrics' => false,
'constantRowsCount' => true,