mirror of
https://github.com/dg/dibi.git
synced 2025-08-05 05:37:39 +02:00
DibiProfiler: iterator fix
This commit is contained in:
committed by
David Grudl
parent
acda14ca64
commit
1a4ea39a60
@@ -265,7 +265,7 @@ class DibiProfiler extends DibiObject implements IDibiProfiler, IDebugPanel
|
|||||||
{
|
{
|
||||||
$s = NULL;
|
$s = NULL;
|
||||||
$h = 'htmlSpecialChars';
|
$h = 'htmlSpecialChars';
|
||||||
foreach (self::$tickets as $ticket) {
|
foreach (self::$tickets as $i => $ticket) {
|
||||||
list($connection, $event, $sql, $time, $count, $source) = $ticket;
|
list($connection, $event, $sql, $time, $count, $source) = $ticket;
|
||||||
if (!($event & self::QUERY)) continue;
|
if (!($event & self::QUERY)) continue;
|
||||||
|
|
||||||
|
Reference in New Issue
Block a user