diff options
author | Derek Allard <derek.allard@ellislab.com> | 2008-08-20 21:07:12 +0200 |
---|---|---|
committer | Derek Allard <derek.allard@ellislab.com> | 2008-08-20 21:07:12 +0200 |
commit | 34d191466fc1436c3ac4560880431ad3d97e9e91 (patch) | |
tree | d01925bb8784c0d3728d87834abccabee62c7a6a /system | |
parent | 9988aecc9220805c940c66f1701c63da210de387 (diff) |
Changed the output of the profiler to use style attribute rather then clear, and added the id "codeigniter_profiler" to the container div
Diffstat (limited to 'system')
-rw-r--r-- | system/libraries/Profiler.php | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/system/libraries/Profiler.php b/system/libraries/Profiler.php index da1fff19b..74461e6b2 100644 --- a/system/libraries/Profiler.php +++ b/system/libraries/Profiler.php @@ -322,8 +322,8 @@ class CI_Profiler { */
function run()
{
- $output = '<br clear="all" />';
- $output .= "<div style='background-color:#fff;padding:10px;'>";
+ $output = '<br style="clear: both;" />';
+ $output .= "<div id='codeigniter_profiler' style='background-color:#fff;padding:10px;'>";
$output .= $this->_compile_memory_usage();
$output .= $this->_compile_benchmarks();
|