1
0
Fork 0
mirror of https://github.com/Oreolek/debug-toolbar.git synced 2024-06-16 23:00:50 +03:00

Fix "Undefined variable: num" error on some environments

This commit is contained in:
Soar 2011-03-03 14:50:06 +02:00
parent 43a81fee02
commit d1fe511222

View file

@ -177,14 +177,14 @@
<tr align="left">
<th colspan="4">DATABASE "<?php echo strtoupper($db_profile) ?>"</th>
</tr>
<? foreach ($stats as $num => $query): ?>
<?php foreach ($stats as $num => $query): ?>
<tr class="<?php echo text::alternate('odd','even') ?>">
<td><?php echo $num+1 ?></td>
<td><?php echo $query['name'] ?></td>
<td><?php echo number_format($query['time'] * 1000, 3) ?> ms</td>
<td><?php echo number_format($query['memory'] / 1024, 3) ?> kb</td>
</tr>
<? endforeach; ?>
<?php endforeach; ?>
<tr>
<th>&nbsp;</th>
<th><?php echo $sub_count ?> total</th>