shutdown error report fixed by revert to old state..

This commit is contained in:
Steffen Schröder 2014-05-25 00:26:46 +02:00
parent d7975e33b7
commit cfbafc8f82

View File

@ -353,7 +353,7 @@ class ErrorHandler {
*/
public function handleShutdown() {
$error = error_get_last();
if ($error) {
if ($error && ($error['type'] & E_FATAL)) {
$this->handleError($error['type'], $error['message'], $error['file'], $error['line']);
}
}