diff options
author | Andrey Andreev <narf@bofh.bg> | 2012-01-09 08:35:10 +0100 |
---|---|---|
committer | Andrey Andreev <narf@bofh.bg> | 2012-01-09 08:35:10 +0100 |
commit | edc875593d3ddbd0fe86caf6380a62b00a20f245 (patch) | |
tree | 5608b894c3ed79d82073c4441442432f497ee5da /system/core | |
parent | 2425f2f90331a014d3b276629089135fbd849a42 (diff) |
Fix a possible notice in Output library
Diffstat (limited to 'system/core')
-rwxr-xr-x | system/core/Output.php | 6 |
1 files changed, 2 insertions, 4 deletions
diff --git a/system/core/Output.php b/system/core/Output.php index da5c29044..69a2e5f88 100755 --- a/system/core/Output.php +++ b/system/core/Output.php @@ -397,14 +397,12 @@ class CI_Output { // If the output data contains closing </body> and </html> tags // we will remove them and add them back after we insert the profile data $output = preg_replace('|</body>.*?</html>|is', '', $output, $count).$CI->profiler->run(); - if ($count > 0) + if (isset($count) && $count > 0) { $output .= '</body></html>'; } } - // -------------------------------------------------------------------- - // Does the controller contain a function named _output()? // If so send the output there. Otherwise, echo it. if (method_exists($CI, '_output')) @@ -413,7 +411,7 @@ class CI_Output { } else { - echo $output; // Send it to the browser! + echo $output; // Send it to the browser! } log_message('debug', 'Final output sent to browser'); |