Browse Source

Merge pull request #1723 from Ragazzo/profile_panel_fix

detailed view profile panel fix
tags/2.0.0-beta
Alexander Makarov 11 years ago
parent
commit
c3c642ddfc
  1. 4
      extensions/yii/debug/views/default/panels/profile/detail.php

4
extensions/yii/debug/views/default/panels/profile/detail.php

@ -1,5 +1,6 @@
<?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%',
],

Loading…
Cancel
Save