diff options
author | Claude Pache <claude.pache@gmail.com> | 2019-03-13 18:30:35 +0100 |
---|---|---|
committer | Peter Kokot <peterkokot@gmail.com> | 2019-03-13 20:27:17 +0100 |
commit | 37443a6318e04ef0e6cc993aa7ee0bf1afee5394 (patch) | |
tree | db39ac0da13317428e3056f84384a10e2a959e4c /UPGRADING | |
parent | 5d6d4ba4c44de7be5418ff1e394c11778ff6762a (diff) | |
download | php-git-37443a6318e04ef0e6cc993aa7ee0bf1afee5394.tar.gz |
test reversed
Diffstat (limited to 'UPGRADING')
-rw-r--r-- | UPGRADING | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -57,7 +57,7 @@ PHP 8.0 UPGRADE NOTES // With function my_error_handler($err_no, $err_msg, $filename, $linenum) { - if (error_reporting() & $err_no) { + if (!(error_reporting() & $err_no)) { return; // Silenced } // ... |