summaryrefslogtreecommitdiff
path: root/Zend/tests/bug61767.phpt
Commit message (Collapse)AuthorAgeFilesLines
* Add many missing closing PHP tags to testsMáté Kocsis2020-08-091-0/+1
| | | | Closes GH-5958
* Improve undefined variable error messagesMáté Kocsis2020-03-311-2/+2
| | | | Closes GH-5312
* Remove $errcontext argument to error handlersNikita Popov2019-02-051-1/+1
| | | | | | | | | I'm removing the argument entirely here, but we might want to change this to passing null or and empty array instead, if the impact of dropping it entirely turns out to be too large. This was deprecated as part of https://wiki.php.net/rfc/deprecations_php_7_2 as a doc-only deprecation.
* Tweak uncaught exception message displayNikita Popov2015-05-171-1/+1
| | | | | | | | | | | | | This implements a reduced variant of #1226 with just the following change: -Fatal error: Uncaught exception 'EngineException' with message 'Call to private method foo::bar() from context ''' in %s:%d +Fatal error: Uncaught EngineException: Call to private method foo::bar() from context '' in %s:%d The '' wrapper around messages is very weird if the exception message itself contains ''. Futhermore having the message wrapped in '' doesn't work for the "and defined" suffix of TypeExceptions.
* Fixed bug #64135 (Exceptions from set_error_handler are not always propagated)Xinchen Hui2013-02-071-7/+5
|
* - Fixed bug #61767 (Shutdown functions not called in certain error situation)Dmitry Stogov2012-09-061-0/+34
- Fixed bug #60909 (custom error handler throwing Exception + fatal error = no shutdown function)