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>2013-07-31 20:46:40 +0400
committermattab <matthieu.aubry@gmail.com>2013-07-31 20:46:40 +0400
commit11752942f0e6526a0d254af2bb2b101491238f29 (patch)
treeb3434b12326b5d84b42312c546c7ec4ee13ab10e /plugins/UserSettings/functions.php
parentd9d4598084aa51d95bf3eab0e961d3c27161cbb8 (diff)
Refs #3741 PHP Namespace conversion continued: Tracker classes,
renaming Unzip to Uncompress, Renaming Tracker/Referer to Tracker/Referrer, and few more
Diffstat (limited to 'plugins/UserSettings/functions.php')
-rw-r--r--plugins/UserSettings/functions.php3
1 files changed, 2 insertions, 1 deletions
diff --git a/plugins/UserSettings/functions.php b/plugins/UserSettings/functions.php
index 86164eb5a1..41269b773b 100644
--- a/plugins/UserSettings/functions.php
+++ b/plugins/UserSettings/functions.php
@@ -9,6 +9,7 @@
* @package Piwik_UserSettings
*/
use Piwik\Piwik;
+use Piwik\Tracker\Request;
/**
* @see libs/UserAgentParser/UserAgentParser.php
@@ -208,7 +209,7 @@ function Piwik_UserSettings_keepStrlenGreater($value)
function Piwik_getScreenTypeFromResolution($resolution)
{
- if ($resolution === Piwik_Tracker_Request::UNKNOWN_RESOLUTION) {
+ if ($resolution === Request::UNKNOWN_RESOLUTION) {
return $resolution;
}