mirror of
https://github.com/sigmasternchen/php-doc-en
synced 2025-03-15 16:38:54 +00:00
revert r336038 because $errno is supposed to map to ErrorException::$severity
git-svn-id: https://svn.php.net/repository/phpdoc/en/trunk@336040 c90b9560-bf6c-de11-be94-00142212c4b1
This commit is contained in:
parent
996298bb2d
commit
e91739280c
1 changed files with 1 additions and 1 deletions
|
@ -88,7 +88,7 @@ function exception_error_handler($errno, $errstr, $errfile, $errline ) {
|
|||
// This error code is not included in error_reporting
|
||||
return;
|
||||
}
|
||||
throw new ErrorException($errstr, $errno, 0, $errfile, $errline);
|
||||
throw new ErrorException($errstr, 0, $errno, $errfile, $errline);
|
||||
}
|
||||
set_error_handler("exception_error_handler");
|
||||
|
||||
|
|
Loading…
Reference in a new issue