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:
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);
}