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:
authorThomas Steur <tsteur@users.noreply.github.com>2017-01-18 02:06:24 +0300
committerMatthieu Aubry <mattab@users.noreply.github.com>2017-01-18 02:06:24 +0300
commit6c0e31bb925445b46b290db9a9d83a27d2e8090e (patch)
treea12a62cdab3dad81416f1d30f35fec9b3fa78fa5 /core/Tracker.php
parentd807689e85825351b58f11927b3ad7a7926473c3 (diff)
When tracking request is > 2000 char, prefer POST (#11201)
* fixes #2321 when tracking request is > 2000 char, prefer POST * Fix jslint
Diffstat (limited to 'core/Tracker.php')
-rw-r--r--core/Tracker.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/core/Tracker.php b/core/Tracker.php
index 95bb12d7c1..3ed757c638 100644
--- a/core/Tracker.php
+++ b/core/Tracker.php
@@ -76,7 +76,7 @@ class Tracker
ExceptionHandler::setUp();
Common::printDebug("Debug enabled - Input parameters: ");
- Common::printDebug(var_export($_GET, true));
+ Common::printDebug(var_export($_GET + $_POST, true));
}
}