diff --git a/www/_include.php b/www/_include.php index 595a6bcc30713d15bbc7c9c12519678a32c7728d..071da63dd86717adc2140c7d8002bad3d3322318 100644 --- a/www/_include.php +++ b/www/_include.php @@ -43,6 +43,17 @@ set_exception_handler('SimpleSAML_exception_handler'); /* Log full backtrace on errors and warnings. */ function SimpleSAML_error_handler($errno, $errstr, $errfile = NULL, $errline = 0, $errcontext = NULL) { + if (!class_exists('SimpleSAML_Logger')) { + /* We are probably logging a deprecation-warning during parsing. + * Unfortunately, the autoloader is disabled at this point, + * so we should stop here. + * + * See PHP bug: https://bugs.php.net/bug.php?id=47987 + */ + return FALSE; + } + + if ($errno & SimpleSAML_Utilities::$logMask) { /* Masked error. */ return FALSE;