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>2015-07-05 09:48:21 +0300
committermattab <matthieu.aubry@gmail.com>2015-07-05 09:48:21 +0300
commit4b2457b863ef738e8b49f6db07f1f91c0e7d9fc9 (patch)
tree0b2b3f3b6f5e7a6a930207c088accdee26b21a9a /plugins/CoreHome/DataTableRowAction
parentea0ac693c9456a5387cf636beff0542f6479f937 (diff)
Simplify algorithm for label unsanitize
Diffstat (limited to 'plugins/CoreHome/DataTableRowAction')
-rw-r--r--plugins/CoreHome/DataTableRowAction/RowEvolution.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/plugins/CoreHome/DataTableRowAction/RowEvolution.php b/plugins/CoreHome/DataTableRowAction/RowEvolution.php
index 3877c4c1c6..9b80f92c87 100644
--- a/plugins/CoreHome/DataTableRowAction/RowEvolution.php
+++ b/plugins/CoreHome/DataTableRowAction/RowEvolution.php
@@ -147,7 +147,7 @@ class RowEvolution
// getQueryStringFromParameters expects sanitised query parameter values
$parameters = array(
'method' => 'API.getRowEvolution',
- 'label' => Common::sanitizeInputValue($this->label),
+ 'label' => $this->label,
'apiModule' => $apiModule,
'apiAction' => $apiAction,
'idSite' => $this->idSite,