Fix handling of suppressed errors

This commit is contained in:
jmechnich 2022-09-29 16:46:33 +02:00
parent 42bc1620b8
commit 504d0afd35
1 changed files with 1 additions and 3 deletions

View File

@ -43,14 +43,12 @@ function format_backtrace($trace): string {
}
function ttrss_error_handler(int $errno, string $errstr, string $file, int $line): bool {
/*if (version_compare(PHP_VERSION, '8.0.0', '<')) {
if (version_compare(PHP_VERSION, '8.0.0', '<')) {
if (error_reporting() == 0 || !$errno) return false;
} else {
if (!(error_reporting() & $errno)) return false;
}
if (error_reporting() == 0 || !$errno) return false;*/
$file = substr(str_replace(dirname(__DIR__), "", $file), 1);
$context = format_backtrace(debug_backtrace());