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>2021-01-01 07:09:35 +0300
committerGitHub <noreply@github.com>2021-01-01 07:09:35 +0300
commitdb5e994861c4149e655c5b3190bee417bdf835ee (patch)
tree4a51b969a08a3f7f3a65f8d5a1725315c6183318 /plugins
parent339b5cd33c5f47a2a67730b3bfb9eed210219585 (diff)
Ensure unescaped commas are used for periods in url param (#16784)
* Ensure unescaped commas are used for periods in url param * find root cause and fix (date was being double encoded when being set initially because broadcast does not urldecode but $.param expects urldecoded value) Co-authored-by: diosmosis <diosmosis@users.noreply.github.com>
Diffstat (limited to 'plugins')
-rw-r--r--plugins/CoreHome/angularjs/reporting-menu/reportingmenu.controller.js2
1 files changed, 1 insertions, 1 deletions
diff --git a/plugins/CoreHome/angularjs/reporting-menu/reportingmenu.controller.js b/plugins/CoreHome/angularjs/reporting-menu/reportingmenu.controller.js
index 8e2b5dff26..533e38fcfe 100644
--- a/plugins/CoreHome/angularjs/reporting-menu/reportingmenu.controller.js
+++ b/plugins/CoreHome/angularjs/reporting-menu/reportingmenu.controller.js
@@ -67,7 +67,7 @@
var params = {
idSite: idSite,
period: period,
- date: date,
+ date: decodeURIComponent(date),
segment: decodeURIComponent(segment),
category: category.id,
subcategory: subcategory.id,