Replace ob_end_clean to ob_clean in ErrorHandler class error_handler method.

This commit is contained in:
Alexander Demidov
2012-06-29 13:00:29 +04:00
parent a1d33ea32f
commit 94b8fadbc4

View File

@ -21,7 +21,7 @@ class ErrorHandler
{ {
$ob_handlers = ob_get_status(); $ob_handlers = ob_get_status();
if (!empty($ob_handlers)) { if (!empty($ob_handlers)) {
ob_end_clean(); ob_clean();
} }
throw new ErrorException($errstr, 0, $errno, $errfile, $errline); throw new ErrorException($errstr, 0, $errno, $errfile, $errline);
} }