Merge pull request 'Fix handling of suppressed errors' (#85) from mechnich/tt-rss:master into master

Reviewed-on: https://dev.tt-rss.org/fox/tt-rss/pulls/85
This commit is contained in:
fox 2022-10-01 12:31:22 +03:00
commit 54942b7664
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());