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:
Diffstat (limited to 'core/Visualization/Chart.php')
-rw-r--r--core/Visualization/Chart.php5
1 files changed, 4 insertions, 1 deletions
diff --git a/core/Visualization/Chart.php b/core/Visualization/Chart.php
index 5971c6c106..1cde982ef0 100644
--- a/core/Visualization/Chart.php
+++ b/core/Visualization/Chart.php
@@ -52,7 +52,10 @@ abstract class Piwik_Visualization_Chart implements Piwik_View_Interface
{
foreach ($values as $label => &$data) {
$this->series[] = array(
- 'label' => $label,
+ // unsanitize here is safe since data gets outputted as JSON, not HTML
+ // NOTE: this is a quick fix for a double-encode issue. if this file is refactored,
+ // this fix can probably be removed (or at least made more understandable).
+ 'label' => Piwik_Common::unsanitizeInputValue($label),
'internalLabel' => $label
);