Skip to content

Commit

Permalink
refs #4633 fix double encoded &
Browse files Browse the repository at this point in the history
  • Loading branch information
tsteur committed Feb 16, 2015
1 parent 9f1bcf6 commit f7cd687
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions plugins/Live/javascripts/rowaction.js
Expand Up @@ -154,6 +154,8 @@
segmentName = piwikHelper.htmlEntities(segmentName);
segmentValue = piwikHelper.escape(segmentValue);
segmentValue = piwikHelper.htmlEntities(segmentValue);
segmentName = segmentName.replace(/(&)(#[0-9]{2,5};)/g, '&$2')
segmentValue = segmentValue.replace(/(&)(#[0-9]{2,5};)/g, '&$2')

var title = _pk_translate('Live_SegmentedVisitorLogTitle', [segmentName, segmentValue]);

Expand Down

0 comments on commit f7cd687

Please sign in to comment.