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
path: root/core
diff options
context:
space:
mode:
authordiosmosis <diosmosis@users.noreply.github.com>2020-08-19 01:32:25 +0300
committerGitHub <noreply@github.com>2020-08-19 01:32:25 +0300
commit970e28aed729c316ff050460757a545f8a540095 (patch)
treeca2d828fe060680e6625bad971a70f9a3829897d /core
parent0cc279780b7c2c881fbab21b0c5fac122d3d45ef (diff)
url decode value in requestcommand (#16301)
* url decode value in requestcommand * modify test segment so it matches a couple visits and not every visit * update expected test files * another update * another update * last time i hope * hopefully not random * make segment more restrcitive so sorting is not an issue * another test update
Diffstat (limited to 'core')
-rw-r--r--core/CliMulti/RequestCommand.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/core/CliMulti/RequestCommand.php b/core/CliMulti/RequestCommand.php
index 725ac6ecf1..bcdea2b5cc 100644
--- a/core/CliMulti/RequestCommand.php
+++ b/core/CliMulti/RequestCommand.php
@@ -105,7 +105,7 @@ class RequestCommand extends ConsoleCommand
$query = $input->getArgument('url-query');
$query = UrlHelper::getArrayFromQueryString($query); // NOTE: this method can create the StaticContainer now
foreach ($query as $name => $value) {
- $_GET[$name] = $value;
+ $_GET[$name] = urldecode($value);
}
}