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:
authorsgiehl <stefan@piwik.org>2015-09-12 01:03:02 +0300
committersgiehl <stefan@piwik.org>2015-09-12 01:03:02 +0300
commit951835eccba31caf5dbf81234c8c18421b259d5e (patch)
tree7345e3bea95488c4b28f87b4a0459a8f1cd13cdb /plugins/SegmentEditor
parentd64d68b5fbed5fe620a8b36bddd1a9f6b5954bba (diff)
fixes #8216 fixed typo that caused ' beeing replace with )
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 176283eded..f8def3655c 100644
--- a/plugins/SegmentEditor/javascripts/Segmentation.js
+++ b/plugins/SegmentEditor/javascripts/Segmentation.js
@@ -1102,7 +1102,7 @@ $(document).ready(function() {
this.changeSegmentList = function () {};
var cleanupSegmentDefinition = function(definition) {
- definition = definition.replace("'", "%29");
+ definition = definition.replace("'", "%27");
definition = definition.replace("&", "%26");
return definition;
};