Commit c3c642dd by Alexander Makarov

Merge pull request #1723 from Ragazzo/profile_panel_fix

detailed view profile panel fix
parents 5095401a a82f7c52
<?php
use yii\grid\GridView;
use yii\helpers\Html;
?>
<h1>Performance Profiling</h1>
<p>Total processing time: <b><?php echo $time; ?></b>; Peak memory: <b><?php echo $memory; ?></b>.</p>
......@@ -21,8 +22,9 @@ echo GridView::widget([
[
'attribute' => 'info',
'value' => function ($data) {
return str_repeat('<span class="indent">→</span>', $data['level']) . $data['info'];
return str_repeat('<span class="indent">→</span>', $data['level']) . Html::encode($data['info']);
},
'format' => 'html',
'options' => [
'width' => '60%',
],
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment