mirror of
https://github.com/Lastorder-DC/rhymix.git
synced 2026-04-21 19:32:15 +09:00
NOISSUE code rearrange
This commit is contained in:
parent
b146e48ff5
commit
bc47f19615
22 changed files with 130 additions and 159 deletions
|
|
@ -200,7 +200,7 @@ class DisplayHandler extends Handler
|
|||
$queries_output = array(array('Query', 'Elapsed time', 'Result'));
|
||||
foreach($GLOBALS['__db_queries__'] as $query)
|
||||
{
|
||||
array_push($queries_output, array($query['query'], sprintf('%0.5f', $query['elapsed_time']), $query['result']));
|
||||
$queries_output[] = array($query['query'], sprintf('%0.5f', $query['elapsed_time']), $query['result']);
|
||||
}
|
||||
$firephp->fb(
|
||||
array(
|
||||
|
|
@ -214,6 +214,8 @@ class DisplayHandler extends Handler
|
|||
}
|
||||
else
|
||||
{
|
||||
|
||||
$buff = "";
|
||||
// display total execution time and Request/Response info
|
||||
if(__DEBUG__ & 2)
|
||||
{
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue