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:
authorStefan Giehl <stefan@matomo.org>2020-05-20 12:28:13 +0300
committerGitHub <noreply@github.com>2020-05-20 12:28:13 +0300
commit4afbe93a40334d31f2e0a71867277d183938f7a5 (patch)
treec90517c2c7418c33b3ae4ce0daedaac137d85fd1 /core/Tracker/Request.php
parent1933b183ea3ad7fd658aae9cbf90e6ca3adf69b3 (diff)
Remove gears detection (#15956)
* Remoing gears * Remove gears from test files * revert removing gears column from dump * Move sql update to core * Revert "visitorGeolocator: output actual changes in debug mode (#12478)" (#12480) This reverts commit 19a7654a9fd775d5bcaed3b9a22224228288c7f3. * Merge with latest changes * Merge with latest changes * revert * revert, add migration * add migration * Merge * Merge * revert * Update core/Tracker/Settings.php Use 0 as default Co-Authored-By: Stefan Giehl <stefan@matomo.org> * fix tests * rebuilt js * updates expected UI files * update changelog * submodule updates Co-authored-by: Peter Boden <p.boden@pax.de> Co-authored-by: pebosi <mail@pebosi.net> Co-authored-by: Matthieu Aubry <mattab@users.noreply.github.com>
Diffstat (limited to 'core/Tracker/Request.php')
-rw-r--r--core/Tracker/Request.php8
1 files changed, 4 insertions, 4 deletions
diff --git a/core/Tracker/Request.php b/core/Tracker/Request.php
index 77c5795804..8698a6dbda 100644
--- a/core/Tracker/Request.php
+++ b/core/Tracker/Request.php
@@ -717,14 +717,14 @@ class Request
$this->getCookieName(),
$this->getCookieExpire(),
$this->getCookiePath());
-
+
$domain = $this->getCookieDomain();
if (!empty($domain)) {
$cookie->setDomain($domain);
}
-
+
Common::printDebug($cookie);
-
+
return $cookie;
}
@@ -852,7 +852,7 @@ class Request
public function getPlugins()
{
- static $pluginsInOrder = array('fla', 'java', 'dir', 'qt', 'realp', 'pdf', 'wma', 'gears', 'ag', 'cookie');
+ static $pluginsInOrder = array('fla', 'java', 'dir', 'qt', 'realp', 'pdf', 'wma', 'ag', 'cookie');
$plugins = array();
foreach ($pluginsInOrder as $param) {
$plugins[] = Common::getRequestVar($param, 0, 'int', $this->params);