Fix potential issue with json_encode() in templates

This commit is contained in:
Frederic Guillot
2015-08-14 17:25:25 -04:00
parent 17a3781bd8
commit 357102dc6e
9 changed files with 10 additions and 10 deletions

View File

@@ -6,7 +6,7 @@
<p class="alert"><?= t('You need at least 2 days of data to show the chart.') ?></p>
<?php else: ?>
<section id="analytic-cfd">
<div id="chart" data-metrics='<?= json_encode($metrics) ?>' data-date-format="<?= e('%%Y-%%m-%%d') ?>"></div>
<div id="chart" data-metrics='<?= json_encode($metrics, JSON_HEX_APOS) ?>' data-date-format="<?= e('%%Y-%%m-%%d') ?>"></div>
</section>
<?php endif ?>