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-12-15 06:25:42 +0300
committermattab <matthieu.aubry@gmail.com>2014-12-15 06:25:42 +0300
commitd97d9a0a3711752271184a032250200b0f783c5a (patch)
tree04e64c9bd9e81f802d0fe9a5a6156ed9e62d372b /core/Tracker/Visit.php
parent6f5e4bc1f58acf1ecd63a39340265b72be954574 (diff)
Use Common::mb_* proxies rather than direct mb_* access in case multibyte is disabled
Diffstat (limited to 'core/Tracker/Visit.php')
-rw-r--r--core/Tracker/Visit.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/core/Tracker/Visit.php b/core/Tracker/Visit.php
index 4e108450b5..41db09e557 100644
--- a/core/Tracker/Visit.php
+++ b/core/Tracker/Visit.php
@@ -422,7 +422,7 @@ class Visit implements VisitInterface
private static function toCanonicalHost($host)
{
- $hostLower = mb_strtolower($host, 'UTF-8');
+ $hostLower = Common::mb_strtolower($host, 'UTF-8');
return str_replace('www.', '', $hostLower);
}