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:
authorThomas Steur <thomas.steur@gmail.com>2015-02-16 06:14:53 +0300
committerThomas Steur <thomas.steur@gmail.com>2015-02-16 06:14:53 +0300
commitf930d23d09fe4bbea27560124e661c20d89a7b15 (patch)
treeaa2bfb1e4b13cbd833f34ecb4db2484a33aea6e7 /plugins/Actions/API.php
parent83e166738f0649c2ecb7a36b75a8d2a87b57f102 (diff)
group duplicate actions if same action is stored raw, url encoded lower case and url encoded upper case
Diffstat (limited to 'plugins/Actions/API.php')
-rw-r--r--plugins/Actions/API.php4
1 files changed, 4 insertions, 0 deletions
diff --git a/plugins/Actions/API.php b/plugins/Actions/API.php
index 64c11ec37c..7c5c928545 100644
--- a/plugins/Actions/API.php
+++ b/plugins/Actions/API.php
@@ -462,6 +462,10 @@ class API extends \Piwik\Plugin\API
}
});
+ $dataTable->filter('GroupBy', array('label', function ($label) {
+ return urldecode($label);
+ }));
+
$dataTable->queueFilter('ReplaceSummaryRowLabel');
}