From 7ecbefee795678505df2512cb6da9a2f9781659d Mon Sep 17 00:00:00 2001 From: Markus Frosch Date: Wed, 14 Oct 2015 16:34:22 +0200 Subject: [PATCH] Handle E_RECOVERABLE_ERROR with our error handler refs #10361 --- library/Icinga/Application/ApplicationBootstrap.php | 1 + 1 file changed, 1 insertion(+) diff --git a/library/Icinga/Application/ApplicationBootstrap.php b/library/Icinga/Application/ApplicationBootstrap.php index c46aa3a27..1e7bc8edb 100644 --- a/library/Icinga/Application/ApplicationBootstrap.php +++ b/library/Icinga/Application/ApplicationBootstrap.php @@ -493,6 +493,7 @@ abstract class ApplicationBootstrap case E_NOTICE: case E_WARNING: case E_STRICT: + case E_RECOVERABLE_ERROR: throw new ErrorException($errstr, 0, $errno, $errfile, $errline); } return false; // Continue with the normal error handler