#17605348 * FirePHP 이용시 설치 페이지 표시되지 않는 문제 수정

git-svn-id: http://xe-core.googlecode.com/svn/sandbox@5367 201d5d3c-b55e-5fd7-737f-ddc643e51545
This commit is contained in:
bnu 2009-01-15 12:35:18 +00:00
parent d601419a0d
commit 929c645a8c

View file

@ -217,7 +217,7 @@
}
// DB 쿼리 내역 출력
if(__DEBUG__ & 4) {
if((__DEBUG__ & 4) && $GLOBALS['__db_queries__']) {
$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']));