diff options
Diffstat (limited to 'system/libraries')
-rw-r--r-- | system/libraries/Profiler.php | 11 |
1 files changed, 5 insertions, 6 deletions
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 = '<br clear="all" />';
- $output .= "<div style='background-color:#fff;padding:10px;'>";
+ {
+ $output .= "<div id='codeigniter_profiler' style='clear:both;background-color:#fff;padding:10px;'>";
$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 .= '</div>';
-
+
return $output;
}
|