From 504d0afd352d1d388d5c5c96493e1d7479fc6d1a Mon Sep 17 00:00:00 2001 From: jmechnich Date: Thu, 29 Sep 2022 16:46:33 +0200 Subject: Fix handling of suppressed errors --- include/errorhandler.php | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) (limited to 'include') diff --git a/include/errorhandler.php b/include/errorhandler.php index 30b6902b3..da8e4f29c 100644 --- a/include/errorhandler.php +++ b/include/errorhandler.php @@ -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()); -- cgit v1.2.3