diff options
author | Derek Allard <derek.allard@ellislab.com> | 2008-01-29 02:07:06 +0100 |
---|---|---|
committer | Derek Allard <derek.allard@ellislab.com> | 2008-01-29 02:07:06 +0100 |
commit | 31438fe2339067f7bf677eb0695c635960c5faa9 (patch) | |
tree | 11b475eaa615bcab655ac4a8ce797e85e662c8e0 /system/libraries | |
parent | 269b942a2bf7b022795e591d9b0ad04526ee7e09 (diff) |
Removed an unused parameter from Profiler (#3332).
Diffstat (limited to 'system/libraries')
-rw-r--r-- | system/libraries/Profiler.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/system/libraries/Profiler.php b/system/libraries/Profiler.php index 21c2135cc..eb2f25094 100644 --- a/system/libraries/Profiler.php +++ b/system/libraries/Profiler.php @@ -320,7 +320,7 @@ class CI_Profiler { * @access private
* @return string
*/
- function run($output = '')
+ function run()
{
$output = '<br clear="all" />';
$output .= "<div style='background-color:#fff;padding:10px;'>";
|