Skip to content

Commit

Permalink
Fix unescaped params in EvenCollector
Browse files Browse the repository at this point in the history
  • Loading branch information
barryvdh committed Feb 5, 2015
1 parent 74f464c commit 69680d5
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/DataCollector/EventCollector.php
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@ protected function prepareParams($params)
{
$data = array();
foreach ($params as $key => $value) {
$data[$key] = $this->exporter->exportValue($value);
$data[$key] = htmlentities($this->exporter->exportValue($value), ENT_QUOTES, 'UTF-8', false);
}
return $data;
}
Expand Down

0 comments on commit 69680d5

Please sign in to comment.