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:
authorMatthieu Aubry <matt@piwik.org>2015-11-23 05:30:38 +0300
committerMatthieu Aubry <matt@piwik.org>2015-11-23 05:30:38 +0300
commit9904a0609908f9a07d6181acc05a42ea57c97951 (patch)
treee677aac413c2ef581cc24ba7847e3a9088940ede
parent51e87473bd799cf54cea75b4140898bfb0439187 (diff)
parent4e69cc717eb65cb09dc4daf843dc5a0c25531942 (diff)
Merge pull request #9230 from piwik/9192
Fix no data in segmented visitor log for urls with ampersand
-rw-r--r--core/Tracker/TableLogAction.php2
1 files changed, 2 insertions, 0 deletions
diff --git a/core/Tracker/TableLogAction.php b/core/Tracker/TableLogAction.php
index 50696a70f3..2f66a268f6 100644
--- a/core/Tracker/TableLogAction.php
+++ b/core/Tracker/TableLogAction.php
@@ -269,6 +269,8 @@ class TableLogAction
$actionsTypesStoredUnsanitized = array(
$actionType == Action::TYPE_DOWNLOAD,
$actionType == Action::TYPE_OUTLINK,
+ $actionType == Action::TYPE_PAGE_URL,
+ $actionType == Action::TYPE_CONTENT,
);
return in_array($actionType, $actionsTypesStoredUnsanitized);