You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
TYPO3 uses %5B and %5D instead of [ and ] in internal links. In pages and transition piwik translate %5B and %5D fine. But in overlays this substitution does not exist.
In urlnormalizer.js at line 194 I add the following two lines of code which solves the problem for me. But I am not familiar with piwik development so please check this is the right way to fix this issue.
TYPO3 uses %5B and %5D instead of [ and ] in internal links. In pages and transition piwik translate %5B and %5D fine. But in overlays this substitution does not exist.
In urlnormalizer.js at line 194 I add the following two lines of code which solves the problem for me. But I am not familiar with piwik development so please check this is the right way to fix this issue.
url = url.replace(/%5B/gi, '[');
url = url.replace(/%5D/gi, ']');
The text was updated successfully, but these errors were encountered: