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
path: root/core
diff options
context:
space:
mode:
authorBenaka Moorthi <benaka.moorthi@gmail.com>2013-09-09 01:03:07 +0400
committerBenaka Moorthi <benaka.moorthi@gmail.com>2013-09-09 01:03:07 +0400
commit41b9edb929a7d72bd13729108f402b5403c9b28c (patch)
tree7092b8a1cec218e739a68912e685d076f2fbb3d2 /core
parentee2d113e2caa1ee1a3023c5a0db9044d011f2830 (diff)
Fix '% Visit' datatable column header bug by using |raw and make sure goal names are escaped in HtmlTable::setShowGoalsColumnsProperties.
Diffstat (limited to 'core')
-rw-r--r--core/Metrics.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/core/Metrics.php b/core/Metrics.php
index 2d85137556..3d6bc17c48 100644
--- a/core/Metrics.php
+++ b/core/Metrics.php
@@ -292,7 +292,7 @@ class Metrics
public static function getPercentVisitColumn()
{
- $percentVisitsLabel = str_replace(' ', html_entity_decode('&nbsp;'), Piwik_Translate('General_ColumnPercentageVisits'));
+ $percentVisitsLabel = str_replace(' ', '&nbsp;', Piwik_Translate('General_ColumnPercentageVisits'));
return $percentVisitsLabel;
}
} \ No newline at end of file