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:
authormattab <matthieu.aubry@gmail.com>2013-05-12 12:34:16 +0400
committermattab <matthieu.aubry@gmail.com>2013-05-12 12:34:16 +0400
commit9819d9bb44090e5806e401ed41cbda763e1de60b (patch)
treedb696233ae5b5298e02829b8060770770972749b /plugins
parent95574945fdc0b24ff48d46d7b21ed7cadb4b4fd6 (diff)
Getting tests to pass! YOUPI!!!
Diffstat (limited to 'plugins')
-rw-r--r--plugins/API/API.php3
1 files changed, 2 insertions, 1 deletions
diff --git a/plugins/API/API.php b/plugins/API/API.php
index 76abc6498f..7346cff996 100644
--- a/plugins/API/API.php
+++ b/plugins/API/API.php
@@ -1162,10 +1162,11 @@ class Piwik_API_API
}
$label = Piwik_API_ResponseBuilder::unsanitizeLabelParameter($label);
+ $label = urldecode($label);
if ($label) {
$labels = explode(',', $label);
$labels = array_unique($labels);
- $labels = array_map('urldecode', $labels);
+// $labels = array_map('urldecode', $labels);
} else {
$labels = array();
}