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-04-01 07:47:21 +0300
committerGitHub <noreply@github.com>2021-04-01 07:47:21 +0300
commit5c5b324fef5acd736609d83fb81bab538d2783e8 (patch)
treebce15c4ebbf3f037939d629be4c841a034dd694f /plugins/Live
parent6a0085970f3fc7b5fa7418c59d9d59a4e256f7c6 (diff)
Make profile export work in current session (#17409)
Diffstat (limited to 'plugins/Live')
-rw-r--r--plugins/Live/javascripts/visitorProfile.js2
1 files changed, 1 insertions, 1 deletions
diff --git a/plugins/Live/javascripts/visitorProfile.js b/plugins/Live/javascripts/visitorProfile.js
index 59c46f2536..2fdf092dfb 100644
--- a/plugins/Live/javascripts/visitorProfile.js
+++ b/plugins/Live/javascripts/visitorProfile.js
@@ -156,7 +156,7 @@
$element.on('mousedown', '.visitor-profile-export', function (e) {
var url = $(this).attr('href');
if (url.indexOf('&token_auth=') == -1) {
- $(this).attr('href', url + '&token_auth=' + piwik.token_auth);
+ $(this).attr('href', url + '&force_api_session=1&token_auth=' + piwik.token_auth);
}
});