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 'plugins/Referrers/Columns')
-rw-r--r--plugins/Referrers/Columns/Base.php6
1 files changed, 3 insertions, 3 deletions
diff --git a/plugins/Referrers/Columns/Base.php b/plugins/Referrers/Columns/Base.php
index 5e8c186af8..feacc90e55 100644
--- a/plugins/Referrers/Columns/Base.php
+++ b/plugins/Referrers/Columns/Base.php
@@ -236,8 +236,8 @@ abstract class Base extends VisitDimension
if (!empty($this->referrerHost)) {
// is the referrer host the current host?
if (isset($this->currentUrlParse['host'])) {
- $currentHost = mb_strtolower($this->currentUrlParse['host'], 'UTF-8');
- if ($currentHost == mb_strtolower($this->referrerHost, 'UTF-8')) {
+ $currentHost = Common::mb_strtolower($this->currentUrlParse['host'], 'UTF-8');
+ if ($currentHost == Common::mb_strtolower($this->referrerHost, 'UTF-8')) {
$this->typeReferrerAnalyzed = Common::REFERRER_TYPE_DIRECT_ENTRY;
return true;
}
@@ -426,4 +426,4 @@ abstract class Base extends VisitDimension
{
return $visitor->getVisitorColumn('referer_type') == $referrerType;
}
-} \ No newline at end of file
+}