From 344a34cd09f3d3153c6e7faec67ba443f5fa822d Mon Sep 17 00:00:00 2001 From: Derek Allard Date: Fri, 17 Oct 2008 15:42:32 +0000 Subject: re-implementing profiler output --- system/libraries/Profiler.php | 11 +++++------ 1 file changed, 5 insertions(+), 6 deletions(-) (limited to 'system/libraries/Profiler.php') diff --git a/system/libraries/Profiler.php b/system/libraries/Profiler.php index 980cf09cc..b0241b241 100644 --- a/system/libraries/Profiler.php +++ b/system/libraries/Profiler.php @@ -364,20 +364,19 @@ class CI_Profiler { * @return string */ function run() - { - $output = '
'; - $output .= "
"; + { + $output .= "
"; $output .= $this->_compile_uri_string(); $output .= $this->_compile_controller_info(); $output .= $this->_compile_memory_usage(); - $output .= $this->_compile_benchmarks(); + $output .= $this->_compile_benchmarks(); $output .= $this->_compile_get(); $output .= $this->_compile_post(); $output .= $this->_compile_queries(); - + $output .= '
'; - + return $output; } -- cgit v1.2.3-24-g4f1b