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:
authorsgiehl <stefan@piwik.org>2015-11-20 01:53:32 +0300
committersgiehl <stefan@piwik.org>2015-11-23 23:38:41 +0300
commite2ce2924b96bfaa54689312627365f376e380e87 (patch)
tree3bab8e15d712abe9e40b5dbdac2c7cc9a0b4a720 /plugins/CoreHome/DataTableRowAction/RowEvolution.php
parentfac7c27a004dea209f92aac8ebc895dd19a8f64b (diff)
fixes #8393 - unsanitize label for row evolution
Diffstat (limited to 'plugins/CoreHome/DataTableRowAction/RowEvolution.php')
-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 d73c5c2158..106685edf7 100644
--- a/plugins/CoreHome/DataTableRowAction/RowEvolution.php
+++ b/plugins/CoreHome/DataTableRowAction/RowEvolution.php
@@ -91,7 +91,7 @@ class RowEvolution
if (!is_array($this->label)) {
throw new Exception("Expected label to be an array, got instead: " . $this->label);
}
- $this->label = $this->label[0];
+ $this->label = Common::unsanitizeInputValue($this->label[0]);
if ($this->label === '') throw new Exception("Parameter label not set.");