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/Common.php')
-rw-r--r--core/Common.php3
1 files changed, 1 insertions, 2 deletions
diff --git a/core/Common.php b/core/Common.php
index 295f2bfc40..11602fe11c 100644
--- a/core/Common.php
+++ b/core/Common.php
@@ -723,8 +723,7 @@ class Common
*/
public static function convertUserIdToVisitorIdBin($userId)
{
- require_once PIWIK_INCLUDE_PATH . '/libs/PiwikTracker/PiwikTracker.php';
- $userIdHashed = \PiwikTracker::getUserIdHashed($userId);
+ $userIdHashed = \MatomoTracker::getUserIdHashed($userId);
return self::convertVisitorIdToBin($userIdHashed);
}