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-12-04 01:42:20 +0300
committerMatthieu Aubry <matt@piwik.org>2015-12-04 01:42:20 +0300
commit0dc59b92b248615bf54863d12c42e7544cc512da (patch)
tree6e61499d7b04b201ee4a97dd653e9953375ed5a5 /plugins
parentc641b35286c082de152b0ba13d09e1326d97d1b9 (diff)
parentd583954f3672a117c3b7655dcba93e781eaa55ee (diff)
Merge pull request #9241 from piwik/8393
fixes single quote bug in rowevolution
Diffstat (limited to 'plugins')
-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.");