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-03 12:46:05 +0400
committermattab <matthieu.aubry@gmail.com>2013-07-03 12:46:05 +0400
commit85ed7aae14ce92442e4a761a2606dfaba5251650 (patch)
treee5ec3860f2668beb300bc82082f05cae874f6017 /core/Metrics.php
parent064f14cae7977e0e4734463157a9e8df82fc9890 (diff)
trying to fix one test on 5.3 (no idea why it failed only 5.3...)
Diffstat (limited to 'core/Metrics.php')
-rw-r--r--core/Metrics.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/core/Metrics.php b/core/Metrics.php
index b81999f48f..d6f316cc81 100644
--- a/core/Metrics.php
+++ b/core/Metrics.php
@@ -291,7 +291,7 @@ class Piwik_Metrics
public static function getPercentVisitColumn()
{
- $percentVisitsLabel = str_replace(' ', html_entity_decode('&nbsp;'), Piwik_Translate('General_ColumnPercentageVisits'));
+ $percentVisitsLabel = str_replace(' ', html_entity_decode('&#160;'), Piwik_Translate('General_ColumnPercentageVisits'));
return $percentVisitsLabel;
}