Use json_encode to dump out booleans

Per the [notes from the docs](http://php.net/manual/en/function.json-encode.php#refsect1-function.json-encode-notes), passing a boolean to json_encode will output the proper string ("true" or "false").
This commit is contained in:
Avindra Goolcharan 2016-01-06 09:02:08 -05:00
parent ffc72807cc
commit ddec388d03

View file

@ -366,9 +366,9 @@ $opcache = OpCacheService::init($options);
<script type="text/javascript">
var realtime = false;
var opstate = <?php echo json_encode($opcache->getData()); ?>;
var canInvalidate = <?php echo ($opcache->canInvalidate() ? 'true' : 'false'); ?>;
var useCharts = <?php echo ($opcache->getOption('charts') ? 'true' : 'false'); ?>;
var allowFiles = <?php echo ($opcache->getOption('allow_filelist') ? 'true' : 'false'); ?>;
var canInvalidate = <?php echo json_encode($opcache->canInvalidate()); ?>;
var useCharts = <?php echo json_encode($opcache->getOption('charts')); ?>;
var allowFiles = <?php echo json_encode($opcache->getOption('allow_filelist')); ?>;
<?php if ($opcache->getOption('charts')): ?>
var Gauge = function(el, colour) {