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:
authormattpiwik <matthieu.aubry@gmail.com>2008-11-21 18:20:30 +0300
committermattpiwik <matthieu.aubry@gmail.com>2008-11-21 18:20:30 +0300
commit790aee856b91c72f145b5bcdf14cf703cf2f1a92 (patch)
tree3f211298f2b36bcaf7b3f7c13f4393f9c4fb855e /plugins/VisitorInterest/API.php
parent6fe927250feca1ce18567407250d487536957e82 (diff)
- serbian flag
- url encode fix git-svn-id: http://dev.piwik.org/svn/trunk@730 59fd770c-687e-43c8-a1e3-f5a4ff64c105
Diffstat (limited to 'plugins/VisitorInterest/API.php')
-rw-r--r--plugins/VisitorInterest/API.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/plugins/VisitorInterest/API.php b/plugins/VisitorInterest/API.php
index b4c8a6b0b9..fc2af110ff 100644
--- a/plugins/VisitorInterest/API.php
+++ b/plugins/VisitorInterest/API.php
@@ -77,7 +77,7 @@ function Piwik_getDurationLabel($label)
{
$time = intval($label) / 60;
$plusXMin = Piwik_Translate('VisitorInterest_PlusXMin');
- return sprintf($plusXMin, urlencode('+').$time);
+ return sprintf($plusXMin, '+' . $time);
}
}