diff options
Diffstat (limited to 'system/libraries')
-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();
|