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@piwik.org>2017-06-14 08:23:58 +0300
committerMatthieu Aubry <mattab@users.noreply.github.com>2017-06-14 08:23:58 +0300
commitfe08be5148aca478c2b6cff64f9de9ae4ece5921 (patch)
tree88424b0f15466b808db6f9ab4a95612e4a596007 /plugins/SegmentEditor
parentb6fd19b92896b50bc6c89ecaaa4c4bbf4009c44d (diff)
update only hash values when updating a segment (#11790)
Diffstat (limited to 'plugins/SegmentEditor')
-rw-r--r--plugins/SegmentEditor/javascripts/Segmentation.js2
1 files changed, 1 insertions, 1 deletions
diff --git a/plugins/SegmentEditor/javascripts/Segmentation.js b/plugins/SegmentEditor/javascripts/Segmentation.js
index d85399781b..1ca8bfc014 100644
--- a/plugins/SegmentEditor/javascripts/Segmentation.js
+++ b/plugins/SegmentEditor/javascripts/Segmentation.js
@@ -1314,7 +1314,7 @@ $(document).ready(function() {
this.forceSegmentReload = function (segmentDefinition) {
segmentDefinition = this.uriEncodeSegmentDefinition(segmentDefinition);
- return broadcast.propagateNewPage('segment=' + segmentDefinition, true);
+ return broadcast.propagateNewPage('', true, 'segment=' + segmentDefinition);
};
this.changeSegmentList = function () {};