When you check the stats in Piwik, you see the spaces between words in Page Titles are replaced with '+'.

In piwik check Dashboard>Visitors>Vistor Log and you see the results there.

In piwik.module, line 135 - we can safely use 'rawurlencode' instead of 'urlencode' and solve this problem:

- $titles = array_map('urlencode', $titles);
+ $titles = array_map('rawurlencode', $titles);
CommentFileSizeAuthor
Screenshot - 10.03.2016 , 14_47_53.png3.27 KBmanyk
Support from Acquia helps fund testing for Drupal Acquia logo

Comments

manyk created an issue. See original summary.

manyk’s picture

Issue summary: View changes
manyk’s picture

Issue summary: View changes

  • hass committed fa0f186 on 8.x-1.x
    Issue #2684919 by hass, manyk: Page titles sent to Piwik use + instead...

  • hass committed fd762d1 on 7.x-2.x
    Issue #2684919 by hass, manyk: Page titles sent to Piwik use + instead...

  • hass committed c21bbf5 on 6.x-2.x
    Issue #2684919 by hass, manyk: Page titles sent to Piwik use + instead...
hass’s picture

Status: Active » Fixed

Status: Fixed » Closed (fixed)

Automatically closed - issue fixed for 2 weeks with no activity.